@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');

/*
Roboto 300,400,500,700,900
Roboto Slab 400,700
*/

:root {
  --bodyfont: "Roboto", sans-serif;
  --btnfont: "Roboto", sans-serif;
  /* --heading-font: "Roboto Slab", sans-serif; */
  --primary-color: #6b6969;
  --blueL: #2074f7;
  --blueD: #33359d;
}

body,
html {
  width: 100%;
}

/* Reset CSSS */

* {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none !important;
  outline: none !important;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-shadow: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--bodyfont);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  color: var(--primary-color);
  font-size: 14px;
  line-height: 1.5;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
}

img,
figure {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  color: inherit;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1.2;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}


.dash_header {
  font-size: 45px;
  color: #1c222c;
  text-transform: capitalize;
  margin-bottom: 10px;
}


a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

a:focus {
  outline: none;
}

ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
svg {
  -o-transition: 0.3s all ease-in-out 0s;
  transition: 0.3s all ease-in-out 0s;
  -webkit-transition: 0.3s all ease-in-out 0s;
  -moz-transition: 0.3s all ease-in-out 0s;
}

.dropdown-toggle:focus {
  outline: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 0 20px;
  appearance: none;
  background-color: #fff;
  width: 100%;
  background-clip: padding-box;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  border: 1px solid var(--primary-color);
  height: 55px;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: var(--primary-color);
  font-family: inherit;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
.form-control:focus {
  border-color: #24567b !important;
  outline: none;
  background-color: #fff;
  color: #000;
}

textarea,
textarea.form-control {
  height: 136px;
  padding-top: 18px;
  line-height: 1.2;
  resize: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #000;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
.form-control::-moz-placeholder {
  color: #000;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: #000;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
  color: #000;
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder {
  color: #000;
}

select[multiple] {
  background: transparent;
  min-height: 85px;
  font-family: inherit;
}

::-webkit-input-placeholder {
  color: #000;
}

::-moz-placeholder {
  color: #000;
}

:-ms-input-placeholder {
  color: #000;
}

:-moz-placeholder {
  color: #000;
}

button,
input[type="button"],
input[type="submit"] {
  text-align: center;
  padding: 8px 20px;
  color: #000;
  background: #fff;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: inline-block;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid var(--primary-color);
  height: 55px;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  font-family: inherit;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

input[type="submit"] {
  padding: 0 25px;
  line-height: inherit;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background: #000;
  color: #fff;
  outline: none;
  text-decoration: none;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
    .input-group-btn
  ),
.bootstrap-select:not(.input-group-btn),
.bootstrap-select[class*="col-"] {
  width: 100%;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

::-moz-selection {
  color: #fff;
  background-color: #5d5d5d;
}

::selection {
  color: #fff;
  background-color: #5d5d5d;
}

address {
  margin: 0;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/arrow_bottom.svg) no-repeat calc(100% - 16px) center
    transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.form-group {
  margin-bottom: 28px;
}

.labeltxt {
  font-weight: 300;
  margin-bottom: 10px;
}

/* images alignment for wordpress content pages */

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {

    } */

.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {

    } */

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */
/* .container-fluid {
  padding-left: 25px;
  padding-right: 25px;
  max-width: 1970px;
} */

/* .cmn-gap {
  padding-top: 80px;
  padding-bottom: 80px;
} */

.btn {
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  padding: 15px 40px;
  font-size: 18px;
  line-height: 21px;
}

.btn.btn_outline {
  border: 2px solid var(--blueD);
  background-color: transparent;
  color: var(--blueD);
}

.btn.btn_fill {
  border: 2px solid var(--blueL);
  color: #fff;
  background-color: var(--blueL);
}

.btn.btn_outline:hover {
  border: 2px solid var(--blueD);
  background-color: var(--blueD);
  color: #fff;
}

.btn.btn_fill:hover {
  border: 2px solid var(--blueL);
  color: var(--blueL);
  background-color: #fff;
}

/*  General style  **/
ul li {
  list-style: none;
}
ul {
  padding: 0;
  margin: 0;
}
.padding-sec {
  padding: 200px 0;
}
/* navbar*/

/********* dashboard*********/
.main_wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  min-height: 100vh;
}

/******* 27.03.2023 *******/
.left_panel {
  position: fixed;
  left: 0;
  bottom: 0;
  height: calc(100vh - 96px);
  width: 308px;
  background: var(--blueD);
  overflow-y: auto;
  flex-basis: 308px;
  overflow-x: hidden;
  transition: all 0.5s ease;
}
.panel_collpase .left_panel {
  width: 120px;
  flex-basis: 120px;
}
.panel_collpase .right_panel {
  width: calc(100% - 120px);
  flex-basis: calc(100% - 120px);
}
.panel_collpase .panel_header {
  width: 100%;
  flex-basis: 100%;
}
.panel_collpase .left_panel_inner {
  padding: 40px 10px 0;
}
.panel_collpase .job_btn_block {
  display: none;
}
.panel_collpase .collapse_icon {
  font-size: 0;
  justify-content: center;
}
.panel_collpase .collapse_icon span {
  margin: 0;
}
.panel_collpase .option_list > li > a {
  padding: 20px 5px;
  font-size: 0;
  justify-content: center;
}
.panel_collpase .option_list > li > a > span {
  margin: 0;
}
.right_panel {
  width: calc(100% - 308px);
  flex-basis: calc(100% - 308px);
  margin-left: auto;
  transition: all 0.5s ease;
}

.panel_header_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.toggle_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 25px;
  display: none;
}
.panel_header_options > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.panel_header_options > ul > li:not(:last-child) {
  margin-right: 55px;
}
.panel_header {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  flex-basis: calc(100% - 308px);
  padding: 15px 25px;
  background: #ffffff;
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.07);
  z-index: 999;
  transition: all 0.5s ease;
}

.dash_logo {
  display: inline-block;
  width: 66px;
  margin-right: auto;
}
/******* 27.03.2023 *******/

button.dropdown_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border: 0;
  font-family: "Roboto";
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #353535;
  height: auto;
  background: #fff;
  border-radius: 0;
  position: relative;
}
button.dropdown_btn:hover {
  color: var(--blueD);
  background: transparent;
}
button.dropdown_btn > span {
  display: inline-block;
  margin-right: 10px;
}

button.dropdown_btn.dropdown_btn_arrw {
  padding-right: 22px;
}
button.dropdown_btn.dropdown_btn_arrw::after {
  content: "";
  width: 12px;
  height: 8px;
  background: url("images/dwn_arrw.svg") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.left_panel_inner {
  /* height: 100%; */
  padding: 40px 25px 30px;
}

.collapse_icon {
  display: flex;
  align-items: center;
  font-family: "Roboto Slab";
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 27px;
}
.collapse_icon:hover {
  color: var(--blueL);
}
.collapse_icon span {
  display: inline-block;
  margin-right: 22px;
}
.job_btn {
  font-family: var(--bodyfont);
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: var(--blueD);
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 20px 15px;
  margin-bottom: 30px;
}

.job_btn:hover {
  color: #fff;
  background: var(--blueD);
}
.option_list > li > a {
  font-family: var(--bodyfont);
  font-weight: 500;
  font-size: 17px;
  text-transform: capitalize;
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 18px;
  border-top: 1px solid #5b5cc0;
  position: relative;
  transition: all 0.5s ease;
}
.option_list > li.active > a {
  background: var(--blueL);
}
.option_list > li.active > a::after {
  content: "";
  width: 200%;
  height: 103%;
  background: var(--blueL);
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: -1px;
  z-index: -1;
}

.option_list > li > a > span {
  display: inline-block;
  margin-right: 25px;
}
/* .option_list > li > a:hover {
    background: var(--blueL);
} */
.option_list > li > a:hover::after {
  content: "";
  width: 200%;
  height: 103%;
  background: var(--blueL);
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: -1px;
  z-index: -1;
}
.custom_container {
  padding: 0 25px;
}

.employer_details_sec {
  padding: 55px 25px 130px;
  background: #f0f0f0;
  text-align: center;
}
.employer_form_sec {
  padding: 75px 0;
  margin-top: -150px;
  position: relative;
  z-index: 5;
}
.employer_form_wrap {
  max-width: 1180px;
  margin: auto;
  padding: 35px;
  background: #ffffff;
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.07);
}

.customfile_input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 61px 20px;
  background: #f2f2f2;
  border: 1px dashed #c8c8c8;
  border-radius: 14px;
}
.customfile_inputin,
.customfile_inputin1 {
  font-size: 0;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
}
.custom_input_block {
  position: relative;
}

/******form-block******/
.cmn_form_block .form-group .form-control {
  height: 50px;
  border: 1px solid #eaecef;
  border-radius: 11px;
}
.cmn_form_block .form-group.form-group-abs {
  position: relative;
}
.cmn_form_block .form-group.form-group-abs .form-control {
  padding-left: 45px;
}
.cmn_form_block .form-group.form-group-abs.for-tel .form-control {
  padding-left: 70px;
}
img.form_icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.dropdown-for-tel {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: calc(100% - 10px);
  padding-right: 10px;
  border-right: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-control:focus {
  box-shadow: none;
}
.cmn_form_block {
  margin: 40px 0 30px;
}
input.form_block_submit {
  font-family: var(--bodyfont);
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  background: var(--blueL);
  border-radius: 6px;
  padding: 0 22px;
  border: 0;
  min-width: 140px;
}
.form_block_btn {
  margin-top: 30px;
}

.employer_details_sec .cmn_hdr .dash_header {
  margin-bottom: 10px;
  font-family: "Roboto Slab", sans-serif;;
}
.cmn_hdr p {
  font-weight: 500;
  font-size: 25px;
  text-align: center;
  text-transform: capitalize;
  color: #5b5757;
}
.footer-btm.footer-dash {
  border-radius: 0;
  padding: 28px 29px;
}
.panel_body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh !important;
}
textarea.from_textarea {
  padding: 18px 20px;
  height: 197px;
  border: 1px solid #eaecef;
  border-radius: 11px;
}
/* .cmn_form_block > .row > *:last-child .form-group {
  margin-bottom: 0;
} */
.dropdown.form-dropdown .dropdown_btn {
  padding: 0 20px !important;
  width: 100%;
  height: 50px;
  border: 1px solid #eaecef;
  border-radius: 11px;
  justify-content: flex-start;
}
.dropdown.form-dropdown button.dropdown_btn.dropdown_btn_arrw::after {
  right: 30px;
}
.dropdown.form-dropdown .dropdown-menu {
  width: 100%;
}

.cmn_form_block .form-group.form-group-abs.for-tel.for-tel-rev .form-control {
  padding-left: 20px;
  padding-right: 120px;
}
.dropdown-for-tel.dropdown-for-tel-rev {
  left: auto;
  right: 15px;
  border-right: 0;
  border-left: 1px solid #d8d8d8;
  padding: 0 0 0 10px;
}

.radio_head {
  font-family: var(--bodyfont);
  font-weight: 500;
  font-size: 22px;
  color: #000000;
  margin: 0;
}
.ml-4 {
  margin-left: 65px;
}
.custom_radio_block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.custom_radio_block .form_input_radio label span {
  font-weight: 500;
  font-size: 22px;
  text-transform: capitalize;
  color: #000000;
  line-height: 1;
}
.custom_radio_block .form_input_radio label input[type="radio"] + span::before {
  top: 3px;
  width: 19px;
  height: 19px;
  border: 2px solid #afacac;
}
.custom_radio_block .form_input_radio label input[type="radio"] + span::after {
  width: 9px;
  height: 9px;
  background: var(--blueD);
  top: 8px;
  left: 5px;
}
.custom_radio_block
  .form_input_radio
  label
  input[type="radio"]:checked
  + span::before {
  border: 2px solid var(--blueD);
}
.form_input_radio ul {
  display: flex;
  align-items: center;
}
.form_input_radio ul li:not(:last-child) {
  margin-right: 55px;
}
.cmn_line {
  border-bottom: 1px solid #eee;
  padding: 35px 0;
}
.row.cmn_line .form-group {
  margin: 0;
}

.capsul_radio_block ul li a {
  font-family: var(--bodyfont);
  font-weight: 500;
  font-size: 13px;
  color: #9c9c9f;
  line-height: 1;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 74px;
  border: 1px solid #9c9c9f;
  border-radius: 25px;
  background: #fff;
}
.capsul_radio_block ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.capsul_radio_block ul li:not(:last-child) {
  margin-right: 15px;
}
.capsul_radio_block ul li a.active {
  background: var(--blueL);
  color: #fff;
  border: 1px solid var(--blueL);
}
.capsul_radio_block ul li a:hover {
  background: var(--blueL);
  color: #fff;
  border: 1px solid var(--blueL);
}
input.form_block_submit.form_block_submit_black {
  background: #000;
  margin-right: 15px;
}
input.form_block_submit.form_block_submit_black:hover {
  background: #000000;
}
h2.selected_head {
  font-family: var(--bodyfont);
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  color: #000000;
}

.slected_skills ul li > span {
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #000000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid #33359d;
  border-radius: 25px;
  position: relative;
}
.cross_img {
  position: absolute;
  right: -2px;
  top: -2px;
  cursor: pointer;
}
.slected_skills ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px;
}
.slected_skills ul li {
  padding: 10px;
}
.cmn_form_block select.form-select {
  font-weight: 500;
  font-size: 13px;
  color: #000000;
  height: 50px;
  border: 1px solid #eaecef;
  border-radius: 11px;
  background: #fff;
  padding: 10px 20px;
}
.form-select:focus {
  box-shadow: none;
}

.invite_search_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.invite_search_block_left .form-control {
  min-width: 355px;
  background: url(images/search.svg) no-repeat center left 20px;
  background-size: 16px;
  padding-left: 50px;
}
.red_btn {
  font-weight: 500;
  font-size: 20px;
  color: #c60013;
  display: inline-block;
}
.check_content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 13px;
  border: 1px solid #eaecef;
  border-radius: 10px;
  position: relative;
}
.chcek_img {
  width: 60px;
  height: 60px;
  flex-basis: 60px;
}
.chcek_img figure {
  border-radius: 10px;
  overflow: hidden;
}
.chcek_img figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.check_text {
  max-width: calc(100% - 60px);
  flex-basis: calc(100% - 60px);
  padding-left: 15px;
  font-weight: 500;
  font-size: 13px;
  color: #9c9c9f;
}
.check_text p {
  margin-bottom: 0px;
}
p.bold_txt {
  font-size: 14px;
  text-transform: capitalize;
  color: #000000;
  margin: 0;
}
p.blue_txt {
  color: #2074f7;
}
.body_input_check.form_input_check label {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  font-size: 0;
}
.body_input_check.form_input_check label input[type="checkbox"] + span::before {
  left: auto;
  top: 14px;
  right: 14px;
  width: 14px;
  height: 14px;
  background: transparent;
  border: 1px solid #33359d;
  border-radius: 4px;
}
.body_input_check.form_input_check label input[type="checkbox"] + span::after {
  left: auto;
  top: 14px;
  right: 14px;
  width: 14px;
  height: 14px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/wht_tick.svg) no-repeat center center;
  background-size: 8px;
}
.body_input_check.form_input_check
  label
  input[type="checkbox"]:checked
  + span::before {
  background: var(--blueD);
}
.form_input_check.body_input_check > .row > * {
  padding: 10px 14px;
}
.form_input_check.body_input_check > .row {
  margin: -10px -14px;
}
.form_input_check.head_input_check {
  margin-bottom: 20px;
}
.form_input_check.head_input_check label span {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  text-transform: capitalize;
  color: #000000;
}
.form_input_check.head_input_check label input[type="checkbox"] + span::before {
  width: 18px;
  height: 18px;
  background: transparent;
  border: 1px solid #33359d;
  border-radius: 4px;
}
.form_input_check.head_input_check label input[type="checkbox"] + span::after {
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/wht_tick.svg) no-repeat center center;
  background-size: 8px;
}
.form_input_check.head_input_check
  input[type="checkbox"]:checked
  + span::before {
  background: var(--blueD);
}
.form_input_check.head_input_check label {
  padding-left: 30px;
}

.dash_header span {
  color: var(--blueD);
}
h2.small_head {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  color: #000000;
}
.cmn_form_block_title {
  padding-bottom: 35px;
  border-bottom: 1px solid #ededed;
}
label.form_label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 15px;
}
label.form_label span {
  color: #c60013;
}

.employer_img_sec figure {
  height: 505px;
}
.employer_img_sec figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post_job_list ul li {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #000000;
  padding-left: 40px;
  background: url(images/grn_tick.svg) no-repeat center left;
  background-size: 25px;
  width: calc(100% / 5);
  text-align: left;
}
.post_job_list ul {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  flex-wrap: wrap;
}
.post_job_list {
  margin-top: 30px;
}
.cmn_hdr.cmn_hdr_diff_type p {
  margin-bottom: 5px;
}

.cmn_title_head {
  color: #000;
  font-size: 37px;
}
.cmn_border_btm {
  padding-bottom: 35px;
  border-bottom: 1px solid #ededed;
}
.popular_topic_sec {
  padding: 50px 0;
}
.popular_topic_content h3 {
  font-family: var(--bodyfont);
  font-weight: 500;
  font-size: 26px;
  color: #33359d;
  margin-bottom: 15px;
}
.popular_topic_content ul li {
  list-style: disc;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #2e2e30;
  margin-bottom: 25px;
}
.popular_topic_content ul li:last-child {
  margin-bottom: 0;
}
.popular_topic_wrap > .row {
  margin-top: 35px;
}

/* ph */

/*======= employer-login-page =======*/
.employer-login-mainSec {
  position: relative;
  padding: 158px 0 58px;
}
.employer-login-mainSec::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 480px;
  background: #fbfbff;
}
.employer-login-mainSec-wrap {
  position: relative;
  max-width: 830px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.07);
  z-index: 1;
  padding: 30px 75px 65px;
}
.employer-login-mainSec-wrap h1 {
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
  color: #404042;
  margin-bottom: 28px;
}
.single-wrapform-login label {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 14px;
}
.single-wrapform-login input[type="email"],
.single-wrapform-login input[type="password"] {
  background: #ffffff;
  border: 1px solid #cecece;
  border-radius: 6px;
  height: 54px;
}
.checkBx-frgtPass-wrap-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.checkbx-loginWrap {
  padding-right: 20px;
}
.checkbx-loginWrap label {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  padding-left: 28px;
}
.checkbx-loginWrap label input[type="checkbox"] + span::before {
  width: 20px;
  height: 20px;
  border: 1px solid #cecece;
  border-radius: 2px;
  top: 1px;
}
.checkbx-loginWrap label input[type="checkbox"] + span::after {
  background: url(images/whitesgarw01.svg) no-repeat center center;
  background-size: 12px;
  width: 20px;
  height: 20px;
}
.checkbx-loginWrap label input[type="checkbox"]:checked + span::before {
  background: #34359e;
  border-color: #34359e;
}
.checkBx-frgtPass-wrap-login a {
  font-weight: 500;
  font-size: 16px;
  color: #c60013;
}
.checkBx-frgtPass-wrap-login a:hover {
  color: #2074f7;
}
.submit-btnWrap-innrLogin {
  position: relative;
  margin-bottom: 55px;
}
.submit-btnWrap-innrLogin input[type="submit"] {
  height: 54px;
  background: #2074f7;
  border-radius: 6px;
  border: 1px solid #2074f7;
  padding: 0 56px;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
}
.submit-btnWrap-innrLogin input[type="submit"]:hover {
  background: #000000;
  border-color: #000000;
}
.or-txtwrapLogin {
  position: relative;
  text-align: center;
  margin-bottom: 45px;
}
.or-txtwrapLogin span {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 50px;
  background: #ffffff;
  position: relative;
  margin: 0 auto;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
}
.or-txtwrapLogin::before {
  position: absolute;
  content: "";
  background: #dacfcf;
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.btn-loginwrap-googlFcbk {
  position: relative;
  margin-bottom: 70px;
}
.btn-loginwrap-googlFcbk ul {
  padding: 0;
  margin: 0;
}
.btn-loginwrap-googlFcbk ul li {
  margin-bottom: 37px;
}
.btn-loginwrap-googlFcbk ul li:last-child {
  margin-bottom: 0;
}
.btn-loginwrap-googlFcbk ul li a {
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  padding: 0 10px;
  font-weight: 700;
  font-size: 18px;
}
.btn-loginwrap-googlFcbk ul li a i {
  display: flex;
  align-items: center;
  padding-right: 15px;
}
.btn-loginwrap-googlFcbk ul li a img {
  transform: 0.5s all;
}
.btn-loginwrap-googlFcbk ul li a.google {
  border: 1px solid #c60013;
  color: #c60013;
}
.btn-loginwrap-googlFcbk ul li a.facebkk {
  border: 1px solid #4267b2;
  color: #4267b2;
}
.btn-loginwrap-googlFcbk ul li a.facebkk:hover {
  background: #4267b2;
  color: #ffffff;
}
.btn-loginwrap-googlFcbk ul li a.google:hover {
  background: #c60013;
  color: #ffffff;
}
.btn-loginwrap-googlFcbk ul li a.google:hover img {
  filter: brightness(0) invert(1);
}
.btn-loginwrap-googlFcbk ul li a.facebkk:hover img {
  filter: brightness(0) invert(1);
}
.loginwrap-btn-txtEmployer {
  position: relative;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: #000000;
}
.loginwrap-btn-txtEmployer a {
  color: #2074f7;
  font-weight: 500;
}
.loginwrap-btn-txtEmployer a:hover {
  color: #c60013;
}
.wrap-emplor-twFld {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.small-single-wrapFld-inot {
  width: 50%;
  padding: 0 10px;
}
.small-single-wrapFld-inot input[type="text"] {
  background: #ffffff;
  border: 1px solid #cecece;
  border-radius: 6px;
  height: 54px;
}
.small-single-wrapFld-inot label {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 14px;
}
.login-pass-wrd-wrapall a {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
}
.login-pass-wrd-wrapall {
  position: relative;
}
.wrapchkitem-registerFld {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -17px;
}
.snglwrap-fldRegstr-chck {
  width: 204px;
  padding: 0 17px;
}
.snglwrap-fldRegstr-chck label input[type="radio"] {
  visibility: hidden;
  display: none;
}
.snglwrap-fldRegstr-chck label {
  padding: 0;
  width: 100%;
}
.snglwrap-fldRegstr-chck label input[type="radio"] + span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 105px;
  background: #ffffff;
  border: 1px solid #cecece;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  color: #000000;
}
.snglwrap-fldRegstr-chck label input[type="radio"]:checked + span {
  border: 1px solid #2074f7;
  box-shadow: 0px 2px 7px 2px rgba(0, 0, 0, 0.09);
}
.register-checkitem-new {
  position: relative;
  margin-bottom: 17px;
}
.register-checkitem-new p {
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  color: #808080;
}
.register-checkitem-new p b {
  color: #000000;
}

/*====== employer-membership-page =======*/

.employer-membership-middle-sec {
  position: relative;
  padding: 157px 0 57px;
  background: #f3f8ff;
  border-bottom: 2px solid #F1F1F1;
  border-top: 2px solid #F1F1F1;
}
.employer-membershHead{
  border-bottom: 2px solid #F1F1F1;
}
.main-head.fixed.employer-membershHead{
  border: none;
}
.top-tittle-employer-membershp {
  position: relative;
  text-align: center;
  color: #5b5757;
  font-weight: 500;
  font-size: 25px;
}
.top-tittle-employer-membershp h1 {
  font-weight: 700;
  font-size: 50px;
  text-transform: capitalize;
  color: #1c222c;
  margin-bottom: 10px;
}
.top-tittle-employer-membershp h1 span {
  color: #33359d;
}
.employer-membership-cartsec {
  position: relative;
  padding: 78px 0;
  border-bottom: 2px solid #f1f1f1;
  margin-bottom: 100px;
}
.employer-membership-cartWRap {
  position: relative;
  background: #ffffff;
  box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.13);
  border-radius: 15px;
  padding: 20px 16px;
}
.wrapcrt-emplymembershp-tittl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #ededed;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.wrapcrt-emplymembershp-tittl i {
  display: inline-block;
  padding-right: 15px;
}
.wrapcrt-emplymembershp-tittl h3 {
  font-weight: 700;
  font-size: 25px;
  text-transform: capitalize;
  color: #322e2e;
  margin-bottom: 0;
}
.wrapcrt-emplymembershp-price {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ededed;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.wrapcrt-emplymembershp-price p {
  font-weight: 500;
  font-size: 25px;
  text-transform: capitalize;
  color: #3a3939;
  margin: 0;
}
.wrapcrt-emplymembershp-price p span {
  color: #2074f7;
  font-weight: 700;
}
.wrapcrt-emplymembershp-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ededed;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.wrapcrt-emplymembershp-list ul {
  padding: 0;
  margin: 0;
}
.wrapcrt-emplymembershp-list ul li {
  padding-left: 30px;
  font-weight: 500;
  font-size: 20px;
  margin: 0 0 30px;
  position: relative;
}
.wrapcrt-emplymembershp-list ul li:last-child {
  margin: 0;
}
.wrapcrt-emplymembershp-list ul li.active {
  color: #000000;
}
.wrapcrt-emplymembershp-list ul li.inactive {
  color: #9c9c9c;
}
.wrapcrt-emplymembershp-list ul li.inactive::before {
  position: absolute;
  content: "";
  background: url("images/skscxc06.svg") no-repeat center;
  width: 20px;
  height: 20px;
  background-size: 20px;
  left: 0;
  top: 5px;
}
.wrapcrt-emplymembershp-list ul li.active::before {
  position: absolute;
  content: "";
  background: url("images/skscxc05.svg") no-repeat center;
  width: 20px;
  height: 20px;
  background-size: 20px;
  left: 0;
  top: 5px;
}
.wrapbtn-employer-crtbtnNw a {
  display: inline-block;
  background: #2074f7;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 15px 26px;
}
.wrapbtn-employer-crtbtnNw a:hover {
  color: #ffffff;
  background: #000000;
}
.employer-membership-cartRw {
  --bs-gutter-x: 50px;
}
.footer-employe-membership {
  background: #bbcdf4;
  padding: 0;
}
.footer-employe-membership .footer-btm.footer-dash {
  padding-left: 0;
  padding-right: 0;
}
.inner-employe-job-active-sec {
  position: relative;
  padding: 38px 0 96px;
}
.toptitl-wrapsrch-employer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 25px;
  border-bottom: 1px solid #ededed;
}
.toptitl-wrapsrch-employer h1 {
  font-weight: 700;
  font-size: 22px;
  text-transform: capitalize;
  color: #1c222c;
  margin: 0;
  width: calc(100% - 666px);
  font-family: var(--heading-font);
}
.wrap-form-headrbtm-employerJobs {
  position: relative;
  padding-left: 20px;
  display: flex;
  align-items: center;
  width: 666px;
}
.wrap-form-headrbtm-employerJobs input[type="text"] {
  background: url("images/srchsgicn009.svg") no-repeat center;
  border: 1px solid #b9b9b9;
  background-size: 15px;
  background-position: 25px;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  height: 55px;
  padding: 0 20px 0 55px;
  width: calc(100% - 158px);
}
.wrap-form-headrbtm-employerJobs input[type="submit"] {
  height: 55px;
  background: #ffffff;
  border: 1px solid #2074f7;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  color: #2074f7;
  font-weight: 600;
  font-size: 14px;
  margin-left: 18px;
  width: 140px;
}
.wrap-form-headrbtm-employerJobs input[type="submit"]:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.employer-active-jobTab {
  position: relative;
  padding-top: 25px;
}
.employer-active-jobTab ul.resp-tabs-list {
  position: relative;
  display: flex;
  border-bottom: 1px solid #ededed;
}
.employer-active-jobTab .resp-tabs-list li {
  padding: 0 30px 20px !important;
  border: none !important;
  margin: 0;
  background: transparent !important;
  color: #8a8d90;
  font-weight: 500;
  font-size: 14px;
}
.employer-active-jobTab .resp-tabs-list li.resp-tab-active {
  border-bottom: 1px solid #2074f7 !important;
  color: #2074f7;
}
.employer-active-jobTab .resp-tab-content {
  border: none !important;
  padding: 36px 0;
}
.employe-wrapcart-job-activeRw {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -14px -30px;
}
.employe-wrapcart-job-activeClm {
  width: 20%;
  padding: 0 14px;
  margin-bottom: 30px;
}
.employe-wrapcart-job-activeWrap {
  border: 1px solid #eaecef;
  border-radius: 20px;
  position: relative;
  padding-right: 12px;
  overflow: hidden;
}
.top-employer-bx-jobactive {
  display: flex;
  align-items: center;
  padding: 15px 0 10px 15px;
  border-bottom: 1px solid #ededed;
}
.top-employer-bx-jobactive i {
  background: #f5f5f5;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.top-employer-bx-jobactive i img{
  border-radius: 15px;
}
.txt-info-employr-jobactives {
  width: calc(100% - 60px);
  padding-left: 12px;
}
.top-wrap-link-btempljbs {
  display: flex;
  align-content: center;
  justify-content: space-between;
}
.top-wrap-link-btempljbs h4 {
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: var(--bodyfont);
}
.top-wrap-link-btempljbs a {
  display: inline-block;
}
.txt-info-employr-jobactives p {
  font-weight: 500;
  font-size: 13px;
  color: #9c9c9f;
  margin-bottom: 5px;
}
.txt-info-employr-jobactives p span {
  color: #2074f7;
}
.txt-info-employr-jobactives .dropdown-menu.show {
  padding: 10px;
}
.middle-txtwrap-activeJobempl {
  position: relative;
  padding: 15px 0 10px 15px;
  border-bottom: 1px solid #ededed;
}
.middle-txtwrap-activeJobempl p {
  font-weight: 400;
  font-size: 13px;
  color: #696969;
  margin-bottom: 6px;
  
}
.short-description-text{
  display: -webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  text-overflow:ellipsis;
  height:40px;
}
.middle-txtwrap-activeJobempl .locksi-items-ewmpks {
  display: flex;
  align-items: center;
  color: #000000;
  font-weight: 500;
  margin-bottom: 12px;
  
}
.middle-txtwrap-activeJobempl .locksi-items-ewmpks i {
  display: inline-block;
  padding-right: 10px;
}
.middle-txtwrap-activeJobempl ul {
  display: flex;
  align-items: center;
  margin: 0 -5px;
  padding: 0;
}
.middle-txtwrap-activeJobempl ul li {
  padding: 0 5px;
}
.middle-txtwrap-activeJobempl ul li span {
  color: #9c9c9f;
  font-weight: 500;
  font-size: 13px;
  padding: 2px 15px;
  border: 1px solid #9c9c9f;
  border-radius: 25px;
  display: inline-block;
}
.btm-txtwrapjobactiveEmploers {
  padding: 15px 0 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btm-txtwrapjobactiveEmploers i {
  color: #2074f7;
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
}
.btm-txtwrapjobactiveEmploers a {
  display: inline-block;
  border: 1px solid #33359d;
  border-radius: 25px;
  color: #33359d;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 10px;
  line-height: 1;
}
.btm-txtwrapjobactiveEmploers a:hover {
  background: #33359d;
  color: #ffffff;
}
.inner-employe-job-tw-wrapItem {
  position: relative;
  border: 1px solid #eaecef;
  border-radius: 20px;
  overflow: hidden;
}
.top-wrap-tiem-txtteJobtw {
  display: flex;
  align-items: center;
  padding: 15px 15px 10px;
  border-bottom: 1px solid #ededed;
}
.top-wrap-tiem-txtteJobtw i {
  width: 60px;
  height: 60px;
}
.top-wrap-tiem-txtteJobtw i img {
  border-radius: 15px;
  height: 60px;
}
.emplorey-job-active-tw-mddle {
  padding: 15px 15px 10px;
  border-bottom: 1px solid #ededed;
  position: relative;
}
.emplorey-job-active-tw-mddle p {
  font-weight: 400;
  font-size: 13px;
  color: #696969;
  margin-bottom: 6px;
}
.emplorey-job-active-tw-mddle ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.emplorey-job-active-tw-mddle ul li {
  display: flex;
  align-items: center;
  color: #000000;
  font-weight: 500;
  padding: 0 10px;
  margin: 0 0 10px;
  text-transform: capitalize;
  min-width: 100px;
  min-height: 21px;

}
.emplorey-job-active-tw-mddle ul li i {
  display: inline-block;
  padding-right: 10px;
  line-height: 1;
}
.emplyer-twobtmmlstWrap {
  padding: 15px 15px 10px;
}
.emplyer-twobtmmlstWrap p {
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: #2074f7;
  margin-bottom: 12px;
}
.emplyer-twobtmmlstWrap ul {
  display: flex;
  align-items: center;
  margin: 0 -5px;
}
.emplyer-twobtmmlstWrap ul li {
  padding: 0 5px;
}
.emplyer-twobtmmlstWrap ul li a {
  border: 1px solid #000000;
  /* padding: 6px 13px 4px; */
  padding: 6px 13px 6px;
  text-align: center;
  display: inline-block;
  line-height: 1;
  border-radius: 25px;
  font-weight: 500;
  font-size: 13px;
  color: #000000;
}
.emplyer-twobtmmlstWrap ul li a.blue:hover,
.emplyer-twobtmmlstWrap ul li a.red:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}
.emplyer-twobtmmlstWrap ul li a.blue {
  color: #33359d !important;
  border-color: #33359d !important;
}
.emplyer-twobtmmlstWrap ul li a.red {
  color: #c60013;
  border-color: #c60013;
}
.employers-jobs-active-two-inner {
  position: relative;
  padding: 26px 0 0;
}
.wrap-top-tittle-employer-canditdates {
  display: flex;
  align-items: center;
  width: calc(100% - 666px);
}
.wrap-top-tittle-employer-canditdates h1 {
  width: auto;
  padding-right: 24px;
}
.wrap-top-tittle-employer-canditdates select {
  border: 1px solid #b9b9b9;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  height: 55px;
  background: url("images/arrrwsj006.svg") no-repeat center;
  background-position: 92%;
  background-size: 12px;
  width: auto;
  padding: 0 40px 0 20px;
}
.emproyes-resume-wrapper {
  position: relative;
  padding-top: 40px;
}
.emproyes-resume-wrapperWrapper {
  border: 1px solid #eaecef;
  border-radius: 20px;
}
.top-candist-resume-employes-wrap {
  padding: 15px;
  border-bottom: 1px solid #ededed;
  display: flex;
  align-content: center;
}
.top-candist-resume-employes-wrap i {
  width: 60px;
 height: 60px;
}
.top-candist-resume-employes-wrap i img {
  border-radius: 15px;
  width: 100%;
}
.emproyes-resume-wrapperWrappertxt {
  padding-left: 12px;
  width: calc(100% - 60px);
}
.emproyes-resume-wrapperWrappertxt h4 {
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: var(--bodyfont);
}
.emproyes-resume-wrapperWrappertxt p {
  font-weight: 500;
  font-size: 13px;
  color: #9c9c9f;
  margin-bottom: 5px;
}
.emproyes-resume-wrapperWrappertxt .locksi-items-ewmpks {
  margin: 0;
  display: flex;
  /* align-items: center; */
  align-items: flex-start;
  color: #000000;
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
}
.emproyes-resume-wrapperWrappertxt .locksi-items-ewmpks i {
  width: auto;
  padding-right: 5px;
  height: auto;
}
.wrap-btm-resumes-employeLast {
  padding: 15px;
  display: flex;
  align-items: flex-start;
}
.wrap-btm-resumes-employeLast i {
  width: 50px;
}
.wrap-all-innr-lstresume-lnks {
  padding-left: 10px;
  width: calc(100% - 50px);
}
.wrap-all-innr-lstresume-lnks h4 {
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 8px;
  font-family: var(--bodyfont);
}
.wrap-all-innr-lstresume-lnks a {
  display: inline-block;
  font-weight: 500;
  font-size: 13px;
  color: #2074f7;
  padding: 8px 20px;
  line-height: 1;
  border: 1px solid #2074f7;
  border-radius: 25px;
}
.wrap-all-innr-lstresume-lnks a:hover {
  background: #2074f7;
  color: #ffffff !important;
}
.btn-new-inrvwsemply {
  position: relative;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  background: #2074f7;
  border-radius: 4px;
  padding: 14px 24px;
  display: inline-block;
}
.btn-new-inrvwsemply:hover {
  background: #000000;
  color: #ffffff;
}
.top-wrap-link-btempljbs a:hover {
  opacity: 0.6;
}
.emplyer-twobtmmlstWrap-wraptw {
  position: relative;
  padding: 15px;
}
.emplyer-twobtmmlstWrap-wraptw ul {
  display: flex;
  align-items: center;
  margin: 0 -5px;
}
.emplyer-twobtmmlstWrap-wraptw ul li {
  width: 50%;
  padding: 0 5px;
}
.emplyer-twobtmmlstWrap-wraptw ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
  justify-content: center;
  padding: 14px 5px;
}
.btn-new-inrvwsemplyRed {
  border: 1px solid #c60013;
  color: #c60013;
  position: relative;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
}
.btn-new-inrvwsemplyRed:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.wrap-star-txticnempl {
  display: flex;
  align-items: center;
  width: auto;
  padding-left: 2px;
}
.wrap-star-txticnempl i {
  display: flex;
  padding-right: 5px;
  width: 20px;
}
.wrap-star-txticnempl span {
  display: inline-block;
  color: #33359d;
  font-weight: 500;
  font-size: 13px;
  background: #e0ecff;
  border-radius: 10px;
  padding: 2px 8px 2px 4px;
  text-align: center;
  line-height: 1;
}
.emplyer-twobtmmlstWrap-wraptw p {
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
  justify-content: center;
  padding: 10px 5px;
  font-weight: 500;
  font-size: 20px;
}
.inprocess {
  color: #14b541;
}
.notprocess {
  color: #c60013;
}




/******** 24.03.2023 *********/
.small_heading_profile {
  font-size: 20px;
  text-transform: capitalize;
  color: #1c222c;
  margin: 0;
}
.profile_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.share_icon_list ul {
  display: flex;
  align-items: center;
}
.share_icon_list ul li:not(:last-child) {
  margin-right: 20px;
}
.panel_body.different_color {
  background: #f9f9f9;
}
.profile_content_body {
  margin: 35px 0 65px;
}
.profile_content_body_left {
  text-align: center;
  background: var(--blueL);
  padding: 35px 50px;
  color: #fff;
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}
.candidate_profile_upper figure {
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.candidate_profile_upper figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.star_img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.rating_profile {
  font-weight: 500;
  font-size: 13px;
  color: #33359d;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 9.5px;
  width: 29px;
  height: 19px;
  margin-left: 3px;
}
.profile-title {
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 7px;
}
.bold_txt2 {
  font-weight: 500;
}
.candidate_profile_upper {
  padding-bottom: 45px;
}
.personal_title {
  font-family: var(--bodyfont);
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  color: #ffffff;
  text-align: left;
  margin: 0 0 18px 0px;
}
.personal_details_each {
  text-align: left;
}
.personal_details_each > p:nth-child(1) {
  color: #e6e6e6;
  margin-bottom: 5px;
}
.personal_details_row {
  padding: 20px 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}
.personal_details_row > *:not(:first-child) .personal_details_each {
  padding-left: 30px;
}
.personal_details_row > *:not(:last-child) {
  border-right: 1px solid #ededed;
}
.candidate_profile_table ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  margin: 0 -12px;
  padding: 20px 0;
  border-bottom: 1px solid #ededed;
}
.candidate_profile_table ul li {
  width: 100%;
  padding: 0 12px;
}
.candidate_profile_table ul li:not(:last-child) {
  margin-bottom: 5px;
}
.candidate_profile_table ul li p {
  display: flex;
  justify-content: flex-start;
  color: #E6E6E6;
}
.candidate_profile_table ul li p span {
  margin-left: auto;
  color: #FFFFFF;
}
.candidate_profile_ftr {
  padding-top: 25px;
  max-width: 272px;
  margin: auto;
}
.candidate_profile_ftr p {
  font-weight: 500;
  color: #e6e6e6;
}
.profile_content_body_left_ftr {
  margin-top: 20px;
}
.profile_content_body_left_ftr ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.profile_content_body_left_ftr ul li {
  width: 50%;
  padding: 0 10px;
}
.blue_btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  background: var(--blueD);
  border: 1px solid var(--blueD);
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
}
.blue_btn:hover {
  color: var(--blueD);
  background: #fff;
}
.outline_btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  color: #c60013;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #c60013;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 20px 10px;
}
.outline_btn:hover {
  color: #fff;
  background: #c60013;
}

.profile_content_body_rgt {
  padding: 30px;
  background: #ffffff;
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}
.blue_head {
  font-family: var(--bodyfont);
  font-size: 20px;
  text-transform: capitalize;
  color: #2074f7;
}
.expert_list li p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #0d0c0c;
  padding: 15px 30px;
  background: #f1f1f1;
  border-radius: 75px;
  text-transform: capitalize;
}
.expert_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px;
}
.expert_list li {
  padding: 10px;
}
.career_list {
  display: flex;
  flex-wrap: wrap;
}
.career_list li p {
  color: #9c9c9f;
  margin-bottom: 10px;
  font-size: 16px;
}
.boldest_txt {
  font-weight: 600;
}
.career_list li p.boldest_txt {
  font-size: 16px;
  line-height: 1;
  color: #000000;
  margin-bottom: 10px;
}
.career_list li:not(:last-child) {
  margin-right: 125px;
}
.career_list_wrap {
  display: flex;
  flex-wrap: wrap;
}
.career_list_img {
  flex-basis: 40px;
}
.career_list_data {
  flex-basis: calc(100% - 40px);
  padding-left: 15px;
}
.career_list_wrap_for_big_img .career_list_img {
  flex-basis: 70px;
}
.career_list_wrap_for_big_img .career_list_data {
  flex-basis: calc(100% - 70px);
  padding-left: 15px;
}

.dropdown-menu.dropdown-menu-custom {
  background: #ffffff;
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  border: 0;
  min-width: 205px;
  padding: 25px 0;
  top: 150% !important;
  right: 0 !important;
}
.dropdown-menu.dropdown-menu-custom .dropdown-item {
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  text-transform: capitalize;
  color: #000000;
  display: flex;
  padding: 10px 20px;
  align-items: center;
}
.dropdown_list_item_icon {
  display: inline-block;
  margin-right: 15px;
  flex-basis: 25px;
}

.candidate_review_sec {
  padding: 25px 0;
  border-bottom: 1px solid #ededed;
}
.candidate_review_left {
  text-align: center;
  background: #ffffff;
  border-radius: 5px;
  padding: 35px 45px;
}
.reviewer_img {
  width: 138px;
  height: 138px;
  margin: 0 auto 20px;
  border-radius: 15px;
}
.reviewer_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.salary_amnt {
  font-weight: 500;
  color: #7d7d7d;
  display: flex;
  flex-wrap: wrap;
  text-transform: capitalize;
  margin-top: 13px;
}
.salary_amnt span {
  font-size: 13px;
  color: #2074f7;
  display: inline-block;
  margin-left: auto;
}
.reviews_block.row .blue_head {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 23px;
  text-align: center;
  color: #2074f7;
  text-align: right;
}
.orange_rating_list {
  display: flex;
  align-items: center;
}
.orange_rating_list li:not(:last-child) {
  margin-right: 2px;
}
.reviews_block.row {
  padding: 20px 0;
  border-bottom: 1px solid #ededed;
  border-top: 1px solid #ededed;
}

.candidate_review_left .browseJob_btn_all {
  margin-top: 15px;
}
.candidate_review_rgt ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.candidate_review_rgt ul li:not(:last-child) {
  margin-bottom: 50px;
}
.candidate_progress_left {
  flex-basis: 121px;
}
.candidate_progress_rgt {
  flex-basis: calc(100% - 121px);
  padding-left: 35px;
}
.candidate_progress_rgt .progress {
  height: 15px;
  background: #d9d9d9;
  border-radius: 12px;
}
.progress-bar {
  border-radius: 12px;
}
.candidate_progress_left p {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  text-transform: capitalize;
  color: #383838;
}
.candidate_review_rgt {
  padding: 70px 20px;
  background: #ffffff;
  border-radius: 5px;
  height: 100%;
}

.reviews_slide_item_inner {
  padding: 35px 15px;
  background: #ffffff;
  border-radius: 16px;
}
.reviews_slide_item_inner_top_left span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #f5f5f5;
  border-radius: 15px;
}
.reviews_slide_item_inner_top_left {
  flex-basis: 60px;
}
.reviews_slide_item_inner_top_rgt {
  width: calc(100% - 60px);
  padding-left: 17px;
}
.reviews_slide_item_inner_top {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #EEEEEE;
}
.location_para {
  font-size: 17px;
  color: #797676;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.2;
  align-items: center;
  margin-bottom: 10px;
}
.location_para span {
  display: inline-block;
  margin-left: auto;
  font-weight: 500;
  font-size: 12px;
  color: #8e8e8e;
}
.blue_head {
  font-family:var(--bodyfont);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  color: #2074F7;
}
.rJob_item.extra_padding{
  padding: 10px 20px;
}
.rJob_slider.extra_margin{
  margin: -10px -20px;
}
.candidate_review_slider_sec {
  padding: 30px 0 50px;
}




/* 24-03-2023-css-start */


.emplorey-job-active-tw-mddle ul li:nth-child(1){
  width: 100%;
 align-items: flex-start;
}
.top-wrap-link-btempljbs .dropdown ul li a{
  font-weight: 500;
  font-size: 13px;
  color: #2E2E2E;
}
.top-wrap-link-btempljbs .dropdown ul li a:hover{
  color: #C60013;
  opacity: 1;
}
.txt-info-employr-jobactives .dropdown-menu.show{
  transform: translate(-80px, 23px);
  min-width: 90px;
  background: #FFFFFF;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  border: none;
}
.wrap-startrating-emploterDay{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wrap-startrating-emploterDay p{
  margin: 0;
  font-weight: 500;
  font-size: 12px;
  color: #8E8E8E;
}
.employe-wrapcart-reviewRated-activeRw{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px -30px;
  width: 100%;
}
.employe-wrapcart-reviewRated-activeClm{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 30px;
}
.topr-wrap-my-membershipWrap-empyRw{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -35px;
}
.topr-wrap-my-membershipWrap-emplClm{
  width: 50%;
  padding: 0 35px;
}
.topr-wrap-my-membershipWrap-emplyr{
  position: relative;
  padding-bottom: 50px;
  border-bottom: 1px solid #E4EAEC;
  margin-bottom: 40px;
}



.accntemplsettingimg-upload {
  position: relative;
  max-width: 122px;
  margin: 0 auto;
}
.accntemplsettingimg-upload .accntemplsettingimg-edit {
  position: absolute;
  right: 0;
  z-index: 1;
  bottom: 10px;
}
.accntemplsettingimg-upload .accntemplsettingimg-edit input {
  display: none;
}
.accntemplsettingimg-upload .accntemplsettingimg-edit input + label {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #33359D;
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.accntemplsettingimg-upload .accntemplsettingimg-edit input + label:hover {
  background: #33359D;
  opacity: 0.6;
}
.accntemplsettingimg-upload .accntemplsettingimg-edit input + label:after {
  content: "";
  background: url('images/ssdjwicnnjk009.svg') no-repeat center;
  background-size: 11px;
  width: 11px;
  height: 11px;
  position: absolute;
  top: 5px;
  left: 5px;
}
.accntemplsettingimg-upload .accntemplsettingimg-preview {
  width: 122px;
  height: 122px;
  position: relative;
  border-radius: 100%;
}
.accntemplsettingimg-upload .accntemplsettingimg-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.employer-my-accnt-top-edtPart{
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.img-change-part-wrap-topmyAccnt{
  width: 125px;
}
.img-change-part-wrap-topmyAccntTxt{
  position: relative;
  width: calc(100% - 125px);
  padding-left: 45px;
}
.img-change-part-wrap-topmyAccntTxt h4{
  font-weight: 500;
  font-size: 27px;
  font-family: "Roboto Slab", sans-serif;
  color: #000000;
  margin-bottom: 15px;
}
.img-change-part-wrap-topmyAccntTxt p{
  font-weight: 500;
  font-size: 20px;
  color: #5B5757;
}
.employer-my-accnt-table-edtPart{
  position: relative;
}
.employer-my-accnt-table-edtPart table{
  width: 100%;
}
.employer-my-accnt-table-edtPart table tr{
  border-top: 1px solid #E4EAEC;
}
.employer-my-accnt-table-edtPart table tr td:nth-child(1){
  width: 40%;
}
.employer-my-accnt-table-edtPart table tr td:nth-child(2){
  width: 40%;
}
.employer-my-accnt-table-edtPart table tr td:nth-child(3){
  width: 20%;
}
.employer-my-accnt-table-edtPart table tr:last-child td{
  padding-bottom: 0;
}
.employer-my-accnt-table-edtPart table tr td{
  padding: 30px 10px;
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  color: #777777;
}
.employer-my-accnt-table-edtPart table tr td span{
  color: #000000;
  font-weight: 500;
}
.edit-tableBtnitem{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90px;
  margin-left: auto;
  background: #2074F7;
  border-radius: 100px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #FFFFFF;
  padding: 6px 2px;
}
.edit-tableBtnitem i{
  display: flex;
  padding-left: 5px;
}
.edit-tableBtnitem:hover{
  color: #ffffff;
  opacity: 0.7;
}
.employer-table-accnt-settingswrap{
  max-width: 1344px;
  margin: auto;
  padding: 35px;
  background: #ffffff;
  box-shadow: 0px 5px 18px rgba(0, 0, 0, 0.07);
}
.employer-accnt-settngWrap-btn{
  max-width: 1344px;
  margin: 48px auto 0;
}
.employer-accnt-settngWrap-btn ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}
.employer-accnt-settngWrap-btn ul li{
  padding: 0 16px;
}
.employer-accnt-settngWrap-btn ul li a{
  display: inline-block;
  border: 2px solid #C60013;
  border-radius: 14px;
  font-weight: 500;
  font-size: 20px;
  color: #C60013;
  padding: 30px 160px;
}
.employer-accnt-settngWrap-btn ul li a:hover{
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}
.employer-accnt-settngWrap-btn ul li a.fill{
  background: #C60013;
  color: #ffffff;
}
.employer-accnt-settngWrap-btn ul li a.fill:hover{
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}
.employer-main-notification-sec{
  position: relative;
  padding: 140px 0 40px;
  background: #F8F8F8;
}
.top-employer-main-notification-tittle{
  position: relative;
  margin-bottom: 35px;
}
.top-employer-main-notification-tittle h1{
  font-weight: 700;
  font-size: 40px;
  text-transform: capitalize;
  color: #1C222C;
  font-family: "Roboto Slab", sans-serif;
}
.single-notification-item-employer{
  padding: 28px 14px;
  background: #FAFAFA;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
}
.top-employer-item-notific{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 28px;
}
.left-item-wrap-innt-nameimg{
  display: flex;
  align-items: center;
  padding-right: 10px;
}
.left-item-wrap-innt-nameimg i{
  display: inline-flex;
}
.left-item-wrap-innt-nameimg span{
  display: inline-block;
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  text-transform: capitalize;
}
.right-wrap-noftic-itemInnr{
  display: flex;
  align-items: center;
  color: #9F9F9F;
  font-weight: 500;
  font-size: 14px;
}
.right-wrap-noftic-itemInnr p{
  padding-right: 45px;
  margin: 0;
}
.right-wrap-noftic-itemInnr a{
  display: inline-block;
  transition: 0.5s ease-in-out;
}
.right-wrap-noftic-itemInnr a:hover{
  transform: scale(1.05);
}
.bttm-employe-notification-wrapTxt{
  position: relative;
  padding-top: 26px;
}
.bttm-employe-notification-wrapTxt p{
  font-weight: 500;
  font-size: 12px;
  color: #9F9F9F;
}
.bttm-employe-notification-wrapTxt p span{
  font-weight: 500;
  font-size: 18px;
  color: #000000;
  display: inline-block;
}
.wrap-all-emploey-notification{
  position: relative;
}
.single-notification-item-employer:not(:last-child){
  margin-bottom: 38px;
}
.help-center-banner-formSearchWrap{
  position: relative;
  max-width: 762px;
  margin: 0 auto;
}
.help-center-banner-formSearchWrap form{
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-search-wrap-topHlpcenter input[type=text]{
  background: url(images/srchsgicn009.svg) no-repeat center;
  border: 1px solid #B9B9B9;
  background-size: 15px;
  background-position: 25px;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  height: 55px;
  padding: 0 20px 0 55px;
  width: 100%;
}
.input-search-wrap-topHlpcenter{
  position: relative;
  width: calc(100% - 138px);
  padding-right: 15px;
}
.help-center-banner-formSearchWrap form input[type=submit]{
  height: 55px;
  background: #2074F7;
  border: 1px solid #2074F7;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  width: 138px;
}
.help-center-banner-formSearchWrap form input[type=submit]:hover{
  background: #000000;
  border-color: #000000;
}
.employerhelpCenter-new-wrap{
  padding: 60px 25px;
  background: #f0f0f0;
  text-align: center;
}
.employerhelpCenter-middle-newWrap{
  position: relative;
  padding: 30px 25px 70px;
}
.employerhelpCenter-middle-newWrap h2{
  font-weight: 700;
  font-size: 40px;
  text-transform: capitalize;
  color: #000000;
  font-family: "Roboto Slab", sans-serif;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 35px;
}
.wrap-employerTxt-helpcenter{
  position: relative;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 30px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
  color: #2E2E30;
}
.wrap-employerTxt-helpcenter span{
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  color: #2074F7;
  font-style: italic;
}
.wrap-employerTxt-helpcenter p:not(:last-child){
  margin-bottom: 10px;
}
.employerhelpCenter-middleRw{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.employerhelpCenter-middleClm-lft{
  width: 70%;
  padding: 0 5px;
  border-right: 1px solid #EDEDED;
}
.employerhelpCenter-middl-single-txt{
  position: relative;
  font-weight: 400;
  font-size: 14px;
  color: #626262;
}
.employerhelpCenter-middl-single-txt p{
  line-height: 1.8;
}
.employerhelpCenter-middl-single-txt:not(:last-child){
  margin-bottom: 30px;
}
.employerhelpCenter-middl-single-txt h3{
  font-weight: 600;
  font-size: 23px;
  color: #000000;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;;
}
.employerhelpCenter-middl-single-txt p:not(:last-child){
  margin-bottom: 12px;
}
.employerhelpCenter-middleClm-rght{
  width: 30%;
  padding: 0 5px;
}
.employerhelpCenter-middl-singleRighttxt:not(:last-child){
  margin-bottom: 40px;
}
.employerhelpCenter-middleClm-rght{
  position: relative;
  padding-left: 20px;
}
.employerhelpCenter-middleClm-rght h4{
  font-weight: 500;
  font-size: 30px;
  color: #33359D;
  line-height: 1;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.employerhelpCenter-middleClm-rght ul{
  margin: 0;
  padding: 0;
}
.employerhelpCenter-middleClm-rght ul li{
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: #2E2E30;
  padding-left: 15px;
}
.employerhelpCenter-middleClm-rght ul li::before{
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2E2E30;
}
.employerhelpCenter-middleClm-rght ul li:not(:last-child){
  margin-bottom: 15px;
}
.delect-accout-popup-newWrapMain{
  position: relative;
  padding: 160px 47px 70px;
  max-width: 830px;
  width: 100%;
}
.delect-accout-popup-newWrapMain::before{
  position: absolute;
  content: "";
  background: #F3F8FF;
  top: 0;
  left: 0;
  height: 40%;
  width: 100%;
}
.delect-accout-popup-newInnr{
  background: #FFFFFF;
  border: 2px solid #F1F1F1;
  border-radius: 16px;
  z-index: 1;
  position: relative;
  padding: 160px 10px 50px;
  text-align: center;
}
.delect-accout-popup-newInnr i{
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: -85px;
  transform: translateX(-50%);
}
.delect-accout-popup-newInnr h4{
  font-weight: 700;
  font-size: 50px;
  text-transform: capitalize;
  color: #1C222C;
  margin-bottom: 15px;
  font-family: "Roboto Slab", sans-serif;
}
.delect-accout-popup-newInnr p{
  font-weight: 500;
  font-size: 25px;
  text-transform: capitalize;
  color: #5B5757;
  max-width: 413px;
  margin: 0 auto 30px;
}
.delect-accout-popup-newInnr a{
  display: inline-block;
  background: #C60013;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  padding: 17px 60px;
}
.delect-accout-popup-newInnr a:hover{
  background: #000000;
}
.delect-accout-popup-newWrapMain .fancybox-close-small{
  background: #C60013;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  top: 20px;
  right: 15px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrap-all-documents-emplorRw{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.single-wrap-all-documents-emplorClm{
  width: 33.33%;
  padding: 0 15px;
}
.wrap-all-documents-emploinnr-item{
  background: #F2F2F2;
  border: 1px dashed #C8C8C8;
  border-radius: 14px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
}
.wrap-all-documents-emploinnr-item i{
  display: inline-block;
  margin-bottom: 12px;
}
.wrap-all-documents-emploinnr-item h4{
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
  color: #000000;
  margin: 0 0 5px;
}
.wrap-all-documents-emploinnr-item p{
  font-weight: 500;
  font-size: 13px;
  color: #9C9C9F;
}
.wrap-all-documents-emploinnr-item a{
  position: absolute;
  top: 15px;
  right: 15px;
}
.wrap-all-documents-emploinnr-item a:hover{
  opacity: 0.7;
}
.wrap-employer-wrapfile-detailsDocumnt-btn{
  position: relative;
  padding: 30px 0;
  text-align: center;
}
.wrap-employer-wrapfile-detailsDocumnt-btn::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  border: 1px dashed #8E8585;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wwrap-btn-wrap-txt{
  background: #ffffff;
  padding: 0 15px;
  position: relative;
  z-index: 1;
  display: inline-flex;
}
.wrap-employer-wrapfile-detailsDocumnt-btn a{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 140px;
  font-weight: 500;
  font-size: 13px;
  border-radius: 25px;
  padding: 4px 10px;
}
.wrap-employer-wrapfile-detailsDocumnt-btn .redbtn{
  border: 1px solid #C60013;
  color: #C60013;
}
.wrap-employer-wrapfile-detailsDocumnt-btn .bluebtn{
  border: 1px solid #33359D;
  color: #33359D;
}
.wrap-employer-wrapfile-detailsDocumnt-btn .redbtn:hover{
  color: #ffffff;
  background: #C60013;
}
.wrap-employer-wrapfile-detailsDocumnt-btn .bluebtn:hover{
  color: #ffffff;
  background: #33359D;
}
.btn-btmmDocumentwrap-lst{
  position: relative;
}
.btn-btmmDocumentwrap-lst a{
  background: #2074F7;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: #FFFFFF;
  padding: 20px 54px;
  display: inline-block;
}
.btn-btmmDocumentwrap-lst a:hover{
  background: #000000;
  color: #ffffff;
}
.form_block_btn input[type="submit"], .form_block_btn input[type="button"]{
  border-color: transparent;
  color: #ffffff;
  background: #2074F7;
}
.popular_topic_content ul{
  padding-left: 25px;
}


/* / Tathagata Start / */
.fancy-calender{
  width: 830px;
  margin: 0 auto;
  padding: 37px 45px;
  border-radius: 16px;
  position: relative;
z-index: 1;
  
}
.calender-hdr{
  font-weight: 700;
font-size: 50px;
font-family: var(--heading-font);
text-transform: capitalize;
text-align: center;
margin-bottom: 0;
color: #1C222C;

}
.calender-para{
  font-weight: 500;
font-size: 25px;
margin-top: 0 !important;
text-align: center;
text-transform: capitalize;

color: #5B5757;

}
.calender-hdr span{
  color: #33359D;
}

section.calendar {
  position: relative;
}
/* section.calendar .circle {
  height: 20px;
  width: 20px;
  background-color: #b12c2c;
  border-radius: 50%;
  box-shadow: inset 3px 3px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
} */
section.calendar .circle.right {
  right: 16px;
}
/* section.calendar .rope {
  height: 110px;
  width: 10px;
  background-color: #2e6a2e;
  position: absolute;
  border-radius: 0 0 7px 7px;
  top: -80px;
  box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.3);
} */
section.calendar .rope.left {
  left: 21px;
}
section.calendar .rope.right {
  right: 21px;
}
section.calendar .currentDateDisplay {
  height: auto;
  width: 100%;
  margin-bottom: 30px;
}
section.calendar .currentDateDisplay > p {
  font-size: 2rem;
  margin-top: 25px;
  color: rgba(0, 0, 0, 0.5);
  text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.4);
}
section.calendar .ui-datepicker {
  display: inline-block;
  margin: auto;
  background-color: #fff;
  box-shadow: none;
  width: 100%;
  padding: 0 15px;
}
section.calendar .ui-datepicker .ui-datepicker-calendar {
  margin: auto;
  width: 100%;
  padding: 1rem;
  border-bottom: 1px solid #EDEDED;
}
section.calendar .ui-datepicker .ui-datepicker-calendar a {
  text-decoration: none;
  color: #19181A;
  border-radius: 50%;
  height: 29px;
  width: 29px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
font-size: 15px;
}
.calender-full-wrap{
  background: #FFFFFF;
border: 2px solid #F1F1F1;
border-radius: 16px;
overflow: hidden;

}
.fancy-calender::after{
  content: "";
  height: 30%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-color: #F3F8FF;
  z-index: -1;
}
.fancy-calender button:hover, input[type="button"]:hover, input[type="submit"]:hover {
  background: transparent;
  color: #000;
  outline: none;
  text-decoration: none;
}

.ui-datepicker-calendar span{
  font-weight: 500;
font-size: 15px;
text-align: center;
font-family: var(--bodyfont);

color: #19181A;

}
.calender-time-wrap{
  padding: 20px 15px;
}
.calender-time-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px -20px -6px;
}
.calender-time-list li{
  width: calc(100% / 8);
  padding: 0 6px 20px 6px;
}
.calender-time-list li a{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  font-weight: 500;
font-size: 13px;
color: #33359D;
border: 1px solid #33359D;
border-radius: 25px;
}
.calender-time-list li a:hover{
  color: #fff;
  background-color: #33359D ;
}
.calender-time-wrap h3{
  font-weight: 500;
font-size: 20px;
font-family: var(--bodyfont);

color: #000000;

}
.calender-time-list .calender-time-active{
  color: #fff;
  background-color: #33359D ;
}
.calender-form-wrap{
  display: flex;
  flex-wrap: wrap;
  padding: 30px 20px;
  border-top: 1px solid #EDEDED;
}
.calender-form-wrap > *{
  width: 50%;
  padding: 0 8px;
}
.calender-form-wrap-total{
  padding: 0 15px;
}
.calender-form-wrap input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, .form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  padding: 15px 20px;
  appearance: none;
  background-color: #fff;
  width: 100%;
  background-clip: padding-box;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  border: 1px solid #918F8F;
  height: auto;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: var(--primary-color);
  font-family: inherit;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
  font-family: var(--bodyfont);
}
.calender-form-wrap input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
  color: #7E7E7E;
}

.calender-form-wrap input::-moz-placeholder,
textarea::-moz-placeholder,
.form-control::-moz-placeholder {
  color: #7E7E7E;
}

.calender-form-wrap input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
  color: #7E7E7E;
}

.calender-form-wrap input::-ms-input-placeholder,
textarea::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
  color: #7E7E7E;
}

.calender-form-wrap input::placeholder,
textarea::placeholder,
.form-control::placeholder {
  color: #7E7E7E;
}
.calender-submit a{
  padding: 17px 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  color: #fff;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
border-radius: 6px;
font-weight: 700;
font-size: 14px;

}
.calender-submit a:hover{
  background-color: #2074F7;
}
.calender-submit .submit-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.calender-submit input[type="submit"]{
background: #2074F7;
color: #fff;
box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
border-radius: 6px;
font-weight: 700;
font-size: 14px;
border: none;
}
.calender-submit input[type="submit"]:hover{
  background: #000;
}
.submit-list li{
  padding-right: 16px;
}
.submit-list li:last-child{
  padding-right: 0;
}
.calender-submit{
  padding: 20px 30px;
}

.ui-widget-content {
  border: none;
}
.ui-widget.ui-widget-content {
  border: none;
}
section.calendar .ui-datepicker .ui-datepicker-calendar .ui-datepicker-today {
  border-color: transparent;
  border: none;
  color: #4C246E;
}
section.calendar .ui-datepicker .ui-datepicker-calendar .ui-state-active {
    color: 
    #33359D !important;
    border: 1px solid #33359D;
  border-radius: 50%;
}
section.calendar .ui-datepicker .ui-datepicker-calendar .ui-state-active {
  color: #4C246E;
}
section.calendar .ui-datepicker .ui-datepicker-header {
  padding: 20px 20px;
  color: transparent;
  font-size: 0;
  background-color: #fff;
  border-bottom: 1px solid #EDEDED;
  border-top: 0;
  border-left: 0;
  border-right: 0;
}
section.calendar .ui-datepicker .ui-datepicker-prev {
  float: left;
  line-height: 2.5rem;
}
.ui-datepicker .ui-datepicker-prev span {
  margin-left: 28px;
}
.ui-datepicker .ui-datepicker-next span {
  margin-left: -38px;
}
section.calendar .ui-datepicker .ui-datepicker-next {
  float: right;
  line-height: 2.5rem;
}
section.calendar .ui-datepicker .ui-datepicker-year,
section.calendar .ui-datepicker .ui-datepicker-month {
  line-height: 2.5rem;
  font-weight: 700;
font-size: 16px;
text-align: center;
text-transform: capitalize;

color: #33359D;
}
.ui-widget-header .ui-icon {
  background: url(images/calender-prev-arrow.svg) no-repeat center;
  background-size: 12px;

}
.ui-icon.ui-icon-circle-triangle-e {
  background: url(images/calender-nxt-arrow.svg) no-repeat center;
  background-size: 12px;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 50%;
  width: 1.8em;
  height: 1.8em;
  transform: translateY(-50%);
}
section.calendar .ui-datepicker .ui-datepicker-month {
  margin-right: 1rem;
}
section.calendar .ui-datepicker td {
  font-family: var(--bodyfont);
  text-align: center;
  padding: 13px 0;
}
section.calendar .ui-datepicker thead {
  color: #c53131;
}
.ui-datepicker th {
  padding: 20px 14px;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: none;
  background: transparent;
  color: #454545;
}

p.bgText {
  line-height: 100%;
  color: #FFE386;
  font-size: 200%;
  font-weight: 600;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}




.custom-write-reviewWrap-top{
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #EDEDED;
}
.mainimgwrap-tpppop{
  width: 76px;
}
.mainimgwrap-tpppop img{
  width: 100%;
  border-radius: 15px;
}
.wrap-txttreview-all-popUps{
  width: calc(100% - 76px);
  padding-left: 15px;
}
.wrap-txttreview-all-popUps h4{
  font-weight: 500;
  font-size: 25px;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: #797676;
}
.star-txtwrap-wrt-revwpopUp{
  display: flex;
  align-items: center;
}
.star-txtwrap-wrt-revwpopUp i{
  padding-right: 10px;
}
.star-txtwrap-wrt-revwpopUp span{
  font-weight: 600;
  font-size: 17px;
  color: #2074F7;
}
.custom-write-reviewWrap{
  background: #FFFFFF;
  border: 2px solid #F1F1F1;
  border-radius: 16px;
  padding: 34px 24px;
  position: relative;
  z-index: 1;
}
.start-rating-mainpopups{
  position: relative;
  background: #FFFFFF;
  border-bottom: 1px solid #EDEDED;
  padding: 34px 24px;
}
.start-rating-mainpopups ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
.start-rating-mainpopups ul li{
  padding: 0 5px
}
.single-wtrap-popsupfld:not(:last-child){
  margin-bottom: 20px;
}
.single-wtrap-popsupfld label{
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  color: #1C2220;
  margin-bottom: 15px;
}
.single-wtrap-popsupfld input, .single-wtrap-popsupfld textarea{
  border-color: #EAECEF;
}
.wrap-form-popsupnew-rating{
  position: relative;
  padding-top: 20px;
}
.popup-rating-employers-frmbtn{
  position: relative;
  padding-top: 20px;
}
.popup-rating-employers-frmbtn input[type=submit]{
  height: 55px;
  background: #2074F7;
  border: 1px solid #2074F7;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  width: 150px;
}
.popup-rating-employers-frmbtn input[type=submit]:hover{
  background: #000000;
  border-color: #000000;
}




/* 27-03-2023-css */
.employer-message-secMain{
  padding: 30px 25px;
  background: #F0F0F0;
}
.employer-message-secMain.msg-sec .msg-sec-inner{
  background-color: transparent;
}
.acpt-btn.epmloyerMsg {
  display: flex;
  padding: 2px 13px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  color: #B6B6B6;
  background-color: #F2F3F3;
  justify-content: flex-start;
  width: 80px;
}





/* 27-03-2023-css-start */
.roboto-font-onlyTittle{
  font-family: 'Roboto', sans-serif !important;
}
.Wrap-main-home-profileWrap{
  position: relative;
  padding-top: 20px;
}
.profile-newWrap-tittleLnks{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.profile-newWrap-tittleLnks a{
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  color: #9C9C9F;
  text-decoration-line: underline !important;
}
.profile-newWrap-tittleLnks a i{
  padding-left: 5px;
  display: inline-block;
}
.profile-newWrap-tittleLnks a:hover{
  opacity: 0.5;
}
.candidate_profile_upper.profile-new-main figure{
  position: relative;
  overflow: visible;
}
.candidate_profile_upper.profile-new-main figure img{
  border-radius: 50%;
}
.candidate_profile_upper.profile-new-main figure a{
  position: absolute;
  z-index: 1;
  bottom: 15px;
  right: 10px;
}
.wrap-profile-txtwrap-innrMin{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.wrap-profile-txtwrap-innrMin h4{
  margin: 0;
}
.profile-popup-allItems .modal-dialog {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
}
.profile-popup-allItems .modal-content{
  background: transparent;
}
.profile-popup-allItems .modal-body{
  padding: 72px 40px 20px;
  border: 1px solid #F1F1F1;
  background: #FFFFFF;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.img-change-part-wrap-topmyAccnt{
  justify-content: center;
  margin: 0 auto;
}
.popup-profile-wrapnewAll{
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 50px;
}
.popup-profile-wrapnewAll .img-change-part-wrap-topmyAccnt{
  width: 266px;
}
.popup-profile-wrapnewAll .accntemplsettingimg-upload{
  max-width: 266px;
}
.popup-profile-wrapnewAll .accntemplsettingimg-upload .accntemplsettingimg-preview{
  width: 266px;
  height: 266px;
}
.popup-profile-wrapnewAll .accntemplsettingimg-upload .accntemplsettingimg-edit {
  position: absolute;
  right: 25px;
  z-index: 1;
  bottom: 25px;
}
.popup-profile-wrapnewAll .accntemplsettingimg-upload .accntemplsettingimg-edit input + label{
  width: 50px;
  height: 50px;
}
.accntemplsettingimg-upload .accntemplsettingimg-edit input + label:after{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background-size: 12px;
}
.profile-popup-allItems .accntemplsettingimg-upload .accntemplsettingimg-edit input + label:after{
  background-size: 20px;
}
.popup-profile-wrapnewAll .accntemplsettingimg-upload .accntemplsettingimg-edit{
    right: 12px;
    bottom: 12px;
}

.wrap-from-popup-btm-formProfile{
  position: relative;
  padding-top: 15px;
}
.wrap-from-popup-btm-formProfile label{
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  color: #000000;
}
.wraprw-popupProfile{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.wrap-item-frm-profilePopups{
  width: 50%;
  padding: 0 5px;
}
.wrap-item-frm-profilePopups input[type=text]{
  border-color: #EAECEF;
  border-radius: 11px;
  height: 50px;
  background: url('images/usrrdhd0023.svg') no-repeat;
  background-position: 5%;
  background-size: 15px;
  padding: 0 20px 0 40px;
  font-weight: 400;
  font-size: 13px;
  color: #000000
}
.wrap-item-frm-profilePopups.two input[type=text]{
  border-color: #EAECEF;
  border-radius: 11px;
  height: 50px;
  background: url('images/usrrdhd0024.svg') no-repeat;
  background-position: 5%;
  background-size: 15px;
  padding: 0 20px 0 40px;
  font-weight: 400;
  font-size: 13px;
  color: #000000
}
.popup-btn-wrapProfile-tw{
  padding-top: 25px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  border-top: 1px solid #EDEDED;
}
.popup-modal-profileBtncancel{
  position: relative;
}
.account_crt_dlt_modal .popup-modal-profileBtncancel button.btn-close{
  background: #000000;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 17px 30px;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  border: 1px solid #000000;
  position: relative;
  top: inherit;
  right: inherit;
  height: auto;
  display: initial;
  width: auto;
  line-height: 1;
}
.account_crt_dlt_modal .popup-modal-profileBtncancel button.btn-close:hover{
  background: #ffffff;
  color: #000000;
}
.popup-modal-profileBtncancelSbtbtn{
  padding-left: 10px;
}
.popup-modal-profileBtncancelSbtbtn input[type=submit]{
  background: #2074F7;
  box-shadow: inset 0px 4px 14px rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 15px 35px;
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  border: 1px solid #2074F7;
  height: 50px;
}
.popup-modal-profileBtncancelSbtbtn input[type=submit]:hover{
  background: #ffffff;
  color: #2074F7;
}
.wrap-checkitem-all-boxProfile{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.wrap-checkitem-all-boxProfile:nth-child(1){
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.single-item-ckbx-prolf{
  width: 50%;
  padding: 0 15px;
}
.innrwrap-chckbxProfile{
  width: 100%;
}
.innrwrap-chckbxProfile label{
  width: 100%;
}
.innrwrap-chckbxProfile span{
  border: 1px solid #EAECEF;
  border-radius: 11px;
  padding: 12px 14px 12px 36px;
  font-weight: 500;
  font-size: 13px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.innrwrap-chckbxProfile span{
  font-weight: 500;
  font-size: 13px;
  color: #000000;
  position: relative;
}

.innrwrap-chckbxProfile input[type=checkbox]{
  display: none;
  visibility: hidden;
}
.innrwrap-chckbxProfile input[type=checkbox]+span::before{
  border: 1px solid #33359D;
  background: transparent;
  border-radius: 4px;
  width: 14px;
  height: 14px;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  content: "";
}
.innrwrap-chckbxProfile input[type=checkbox]:checked+span::before{
  background: #33359D;
}
.innrwrap-chckbxProfile input[type=checkbox]+span::after{
  background: url('images/whiteaajas0099.svg') no-repeat center;
  background-size: 8px;
  width: 14px;
  height: 14px;
  left: 14px;
  top: 50%;
  position: absolute;
  content: "";
  transform: translateY(-50%);
  opacity: 0;
}
.innrwrap-chckbxProfile input[type=checkbox]:checked+span::after{
 opacity: 1;
}
.innrwrap-chckbxProfile input[type=checkbox]:checked+span{
  border: 1px solid #33359D;
}
.single-item-ckbx-prolf{
  margin-bottom: 20px;
}
.profile-popup-allItems-tittle{
  text-align: center;
}
.profile-popup-allItems-tittle h2{
  text-transform: capitalize;
  font-weight: 700;
  color: #1C222C;
}
.profile-popup-allItems-tittle h2 span{
  color: #33359D;
}
.profile-popup-allItems-tittle p{
  text-transform: capitalize;
  color: #5B5757;
  font-weight: 500;
  font-size: 22px;
}
.profile-popup-allItems .account_crt_dlt_modal_inner{
  margin-top: 20px;
}
.txtpopup-profile-keyman{
  position: relative;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #EDEDED;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  align-items: center;
}
.txtpopup-profile-keyman .slected_skills.cmn_line{
  padding: 0 0 0 17px;
}
.txtpopup-profile-keyman select{
  font-weight: 500;
  max-width: 250px;
  font-size: 13px;
  color: #000000;
  height: 50px;
  border: 1px solid #eaecef;
  border-radius: 11px;
  background: #fff;
  padding: 10px 20px;
}
.profile-popup-allItems .slected_skills{
  padding: 0;
  border: none;
}
.profile-popup-allItems h2.selected_head{
  text-align: left;
}
.border-noItem.popup-btn-wrapProfile-tw{
  padding-top: 0;
  border: none;
}
.profile-popup-allItems .account_crt_dlt_modal_inner{
  padding: 20px 30px;
}
.popup-education-profile-wrap{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.single-tw-wrap-form-txt{
  width: 50%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.single-tw-wrap-form-txt input[type=text]{
  border: 1px solid #EAECEF;
  border-radius: 11px;
  color: #000000;
  font-weight: 400;
}
.single-tw-wrap-form-txt.addresss input[type=text]{
  background: url('images/addfrses00933.svg') no-repeat;
  background-position: 5%;
  background-size: 15px;
  padding-left: 40px;
  color: #000000;
  font-weight: 400;
}

.small-fld-education-profile-pop{
  width: 25%;
  padding: 0 10px;
}
.small-fld-education-profile-pop input[type=text]{
  border: 1px solid #EAECEF;
  border-radius: 11px;
  color: #000000;
  font-weight: 400;
}
.popup-educationchckbox-wrapprofl{
  position: relative;
  padding-top: 10px;
  border-top: 1px solid #EDEDED;
  margin-top: 20px;
}
.popup-educationchckbox-wrapprofl p{
  text-align: left;
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  color: #000000;
}
.singlw-ppiodpedcvtn-wrap{
  position: relative;
  padding-right: 15px;
}
.singlw-ppiodpedcvtn-wrap:last-child{
  padding-right: 0;
}
.singlw-ppiodpedcvtn-wrap input[type=checkbox]+span{
  position: relative;
  display: inline-block;
  border: 1px solid #9C9C9F;
  border-radius: 25px;
  font-weight: 500;
  font-size: 13px;
  color: #9C9C9F;
  padding: 4px 15px;
}
.singlw-ppiodpedcvtn-wrap input[type=checkbox]{
  display: none;
  visibility: hidden;
}

.singlw-ppiodpedcvtn-wrap input[type=checkbox]:checked+span{
  border: 1px solid #33359D;
  color: #33359D;
}
.wrap-all-edct-popup-wrap{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.wrap-innr-item-all-popup-frm-ls{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.sinlge-wrappopup-frmlfdcrse{
  width: 30%;
  padding: 0 10px;
}
.wrap-innr-item-all-popup-frm-lst{
  display: flex;
  flex-wrap: wrap;
}
.wrap-innr-item-all-popup-frm-lst input[type=text]{
  border: 1px solid #EAECEF;
  border-radius: 11px;
  color: #000000;
  font-weight: 400;
}
.sinlge-wrappopup-frmlfdcrse.big{
  width: 40%;
  padding: 0 10px;
}
.sinlge-wrappopup-frmlfdcrse.bgimg input[type=text]{
  padding-right: 40px;
  background: url('images/calclal00396.svg') no-repeat;
  background-position: 92%;
  background-size: 15px;
  color: #000000;
  font-weight: 400;
}
.add-filed-wrapbtn-lnks-popup{
  position: relative;
  margin-top: 30px;
}
.add-filed-wrapbtn-lnks-popup a{
  border: 1px solid #33359D;
  border-radius: 25px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 13px;
  color: #33359D !important;
  margin: 0 auto;
  background: #ffffff;
  padding: 4px 10px;
  position: relative;
  z-index: 1;
}
.add-filed-wrapbtn-lnks-popup::before{
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 1px dashed #8E8585;
  height: 1px;
}
.add-filed-wrapbtn-lnks-popup a:hover{
  background: #33359D;
  color: #ffffff !important;
}
.single-tw-wrap-form-txt.threwrap{
  width: 33.33%;
}
.single-tw-wrap-form-txt.threwrap.datettes{

}
.single-tw-wrap-form-txt.threwrap.datettes input[type=text]{
  padding-left: 35px;
  background: url('images/sddatef003569.svg') no-repeat;
  background-position: 5%;
  background-size: 15px;
  font-weight: 400;
}
.file-upload-wrap-items{
  position: relative;
  padding-top: 20px;
  border-top: 1px solid #EDEDED;
  margin-bottom: 20px;
}
.full-widthpopupfrms-address{
  position: relative;
  width: 100%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.full-widthpopupfrms-address input[type=text] {
  background: url(images/addfrses00933.svg) no-repeat;
  background-position: 3%;
  background-size: 15px;
  padding-left: 40px;
  border: 1px solid #EAECEF;
  border-radius: 11px;
  font-weight: 400;
  color: #000000;
}
.top-selectpopup-newworkexp-lst{
  position: relative;
  display: flex;
  margin: 0 -10px;
}
.select-option-popupnews{
  width: 50%;
  padding: 0 10px;
}
.select-option-popupnews select{
  width: 100%;
  border: 1px solid #EAECEF;
  border-radius: 11px;
  height: 50px;
  background: url('images/arrrwgsyhd00239.svg') no-repeat;
  background-position: 95%;
  padding: 0 40px 0 20px;
  background-size: 12px;
  font-weight: 400;
  color: #000000;
}
.select-option-popupnews select option{
  color: #000000;
}
.popup-educationchckbox-wrapprofl.new-bordr{
  padding-bottom: 20px;
  border-bottom: 1px solid #EDEDED;
  margin-bottom: 20px;
}
.medium-wrap-popup-textinpt-org{
  width: 80%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.medium-wrap-popup-textinpt-org input[type=text] {
  background: url(images/addfrses0092239.svg) no-repeat;
  background-position: 3%;
  background-size: 15px;
  padding-left: 40px;
  border: 1px solid #EAECEF;
  border-radius: 11px;
  color: #000000;
  font-weight: 400;
}
.ful-widthwrap-newpopupfldworkexp{
  width: 100%;
  margin-bottom: 20px;
  padding: 0 10px;
}
.ful-widthwrap-newpopupfldworkexp input[type=text] {
  background: url(images/addfrses0092239239.svg) no-repeat;
  background-position: 3%;
  background-size: 15px;
  padding-left: 40px;
  border: 1px solid #EAECEF;
  border-radius: 11px;
  color: #000000;
  font-weight: 400;
}
.new-popupsinwrap-txtpopiexp{
  position: relative;
  padding-top: 20px;
}
.new-popupsinwrap-txtpopiexp p{
  text-align: left;
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    color: #000000;
}
.select-option-popupnews.usrname input[type=text] {
  background: url(images/ususujduy0093.svg) no-repeat;
  background-position: 3%;
  background-size: 15px;
  padding-left: 35px;
  border: 1px solid #EAECEF;
  border-radius: 11px;
  color: #000000;
  font-weight: 400;
}
.select-option-popupnews.date input[type=text] {
  background: url(images/ususujduy0099.svg) no-repeat;
  background-position: 3%;
  background-size: 15px;
  padding-left: 35px;
  border: 1px solid #EAECEF;
  border-radius: 11px;
  color: #000000;
  font-weight: 400;
}
.wrapradio-popupnew{
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #EDEDED;
  margin-bottom: 20px;
}
.wrapradio-popupnew p{
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  color: #000000;
  margin: 0;
}
.wrapradio-popupnew .custom_radio_block .form_input_radio label span{
  font-size: 13px;
}
.wrapradio-popupnew .custom_radio_block .form_input_radio label input[type="radio"] + span::before{
  width: 14px;
  height: 14px;
}
.wrapradio-popupnew .custom_radio_block .form_input_radio label input[type="radio"] + span::after{
  width: 8px;
  top: 6px;
  left: 3px;
  height: 8px;
}
.wrapradio-popupnew .form_input_radio label{
  padding-left: 25px;
}
.main-head.fixed{
  box-shadow: 1px 0px 0px 1px var(--primary-color);
}

.employer-login-mainSec.main-home-new-loginSec{
  padding: 80px 0;
}
.employer-main-notification-sec.main-home-new-loginSec{
  padding: 80px 0;
}


.hidd_started_txttt_rt{
  /*overflow-y: auto;
  overflow-x: hidden;*/
  max-height: inherit !important;
  position: -webkit-sticky;
  position: -o-sticky;
  position: sticky;
  top: 90px;
  left: 0;
}
.nice_scroll_html2{
  right: inherit !important;
  left: 308px !important;
  top: 96px !important;
  transition: all 0.5s ease;
}
body.panel_collpase .nice_scroll_html2{
  left: 120px !important;
}
.left_panel{
  z-index: 10;
}


/* update-qa-css-03-04-2023-start */


.contact-list>li {
  margin-bottom: 18px;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.contact-list>li>a{
  text-transform: lowercase;
}
.dash_header.text-caseUnc{
  text-transform: none;
}
.top-wrap-link-btempljbs h4 a{
  width: 100%;
}
.top-wrap-tiem-txtteJobtw i a{
  width: 100%;
}
.top-wrap-tiem-txtteJobtw i a:hover{
  opacity: 0.8;
}
.top-employer-bx-jobactive i a:hover{
  opacity: 0.8;
}
.top-candist-resume-employes-wrap i a:hover{
  opacity: 0.8;
}
.employer_form_wrap .form_block_btn input[type=submit]{
  text-transform: inherit;
}
.employer-my-accnt-table-edtPart table tr td:nth-child(even){
  text-transform: inherit;
}
.input-search-wrap-topHlpcenter input[type=text]

.input-search-wrap-topHlpcenter input[type=text]::-webkit-input-placeholder {
  color: #827E7E;
}

.input-search-wrap-topHlpcenter input[type=text]::-moz-placeholder {
  color: #827E7E;
}
.input-search-wrap-topHlpcenter input[type=text]:-ms-input-placeholder {
  color: #827E7E;
}

.input-search-wrap-topHlpcenter input[type=text]::-ms-input-placeholder {
  color: #827E7E;
}

.input-search-wrap-topHlpcenter input[type=text]::placeholder {
  color: #827E7E;
}
.cmn_form_block button.dropdown_btn{
  font-weight: 400;
}
.radio_head.nemargn{
  margin-bottom: 20px;
}
.employer_form_wrap .form_block_btn .new-big-frm.form_block_submit{
  padding: 0 40px;
}
.wrap-my-membership-wrapMain{
  display: flex;
  align-items: center;
}
.wrap-my-membership-wrapMain span{
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  padding-right: 15px;
  color: #000000;
}
.wrapshydn-txtwrap-new{
  text-transform: capitalize;
}
.wrap-my-membership-wrapMain span i{
  color: #C60013;
}
.job-notification-card.blue{
  border-color: #2074F7;
}


.wrap-form-headrbtm-employerJobs input[type="text"]::-webkit-input-placeholder {
  color: #827E7E;
}

.wrap-form-headrbtm-employerJobs input[type="text"]::-moz-placeholder {
  color: #827E7E;
}
.wrap-form-headrbtm-employerJobs input[type="text"]:-ms-input-placeholder {
  color: #827E7E;
}

.wrap-form-headrbtm-employerJobs input[type="text"]::-ms-input-placeholder {
  color: #827E7E;
}
.inner-employe-job-active-sec.upcoming-newWrap .emplorey-job-active-tw-mddle ul li{
  color: #4F4E4E;
  font-weight: 500;
  font-size: 12px;
}
.customfile_label{
  font-weight: 500;
  color: #9D9999;
}
.bordrrds-form-crtwrapmembershp{
  border: 2px solid #F1F1F1;
  border-radius: 14px;
  padding: 40px 50px 90px;
}
.btnwrap-active-jobBtnmn .hover{
  display: none;
}
.btnwrap-active-jobBtnmn.active .hover{
  display: inline-block;
}
.btnwrap-active-jobBtnmn.active .normal{
  display: none;
}
.form-group.for-tel{
  z-index: 1;
}
.small_heading_profile.tittle-wrapNew{
  font-family: var(--bodyfont);
}
.img-change-part-wrap-topmyAccntTxt h4{
  font-family: var(--bodyfont);
}
.employerhelpCenter-middleClm-rght h4{
  font-family: var(--bodyfont);
}
.wrapcrt-emplymembershp-tittl h3{
  font-family: var(--bodyfont);
}
/* update-qa-css-03-04-2023-end */

.profile-popup-allItems .modal-dialog input::-webkit-input-placeholder {
  color: #000000;
  opacity: 1;
}

.profile-popup-allItems .modal-dialog input::-moz-placeholder {
  color: #000000;
  opacity: 1;
}
.profile-popup-allItems .modal-dialog input:-ms-input-placeholder {
  color: #000000;
  opacity: 1;
}

.profile-popup-allItems .modal-dialog input::-ms-input-placeholder {
  color: #000000;
  opacity: 1;
}

.custom-msg-row .scroll_flow_cmn{
  position: relative;
}
/*.custom-msg-row .scroll_flow_cmn .nice_scroll_html{
  right: 0 !important;
  top: 0 !important;
  left: inherit !important;
}*/
.scroll_flow_cmn_message{
  position: relative;
}
.employer_msg_seccda{
  right: 0 !important;
  top: 0 !important;
  left: inherit !important;
}
.cmn_form_block .form-group.wrap-small-txt-input-txt input.form-control{
  font-weight: 400;
}
.cmn_form_block button.dropdown_btn{
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  color: #000000;
}

/* ========== new css =========== */
.new-text-input input[type="text"]::placeholder{
  color: #6b6969;
  }
/* ========== new css =========== */

/* ========== responsive css =========== */

@media (min-width: 1025px) {
  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }
  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}

@media (max-width: 1799px) {
  .top-wrap-link-btempljbs a {
    width: 30px;
  }
  .wrap-star-txticnempl span {
    font-size: 10px;
  }
  .wrap-star-txticnempl i {
    width: 12px;
  }
  .txt-info-employr-jobactives {
    padding-left: 5px;
  }
  .top-wrap-tiem-txtteJobtw {
    padding: 10px 8px;
  }
  .emplorey-job-active-tw-mddle {
    padding: 10px 8px;
  }
  .emplyer-twobtmmlstWrap-wraptw {
    padding: 10px 8px;
  }
  .emplyer-twobtmmlstWrap {
    padding: 10px 8px;
  }
  .personal_details_row > *:not(:first-child) .personal_details_each{
    padding-left: 10px;
  }
}

@media (max-width: 1699px) {
  .wrap-form-headrbtm-employerJobs {
    width: 500px;
  }
  .employe-wrapcart-job-activeClm {
    padding: 0 5px;
    margin-bottom: 20px;
  }
  .employe-wrapcart-job-activeRw {
    margin: 0 -5px -20px;
  }
  .toptitl-wrapsrch-employer h1 {
    width: calc(100% - 500px);
  }
  .wrap-top-tittle-employer-canditdates h1 {
    width: auto;
  }
  .txt-info-employr-jobactives {
    padding-left: 5px;
  }
  .wrap-top-tittle-employer-canditdates {
    width: calc(100% - 500px);
  }
  .profile_content_body_left{
    padding: 30px 20px;
  }
  .candidate_review_left{
    padding: 30px 20px;
  }
  .employer-accnt-settngWrap-btn ul li a{
    padding: 20px 80px;
  }
}

@media (max-width: 1599px) {
  .employe-wrapcart-job-activeClm {
    /* width: 25%; */
    width:33%;
  }
  .wrap-form-headrbtm-employerJobs input[type="submit"] {
    width: 120px;
    margin-left: 10px;
  }

  .post_job_list ul li {
    font-size: 16px;
    padding-left: 30px;
    background-size: 16px;
    text-align: left;
  }

      /* 24-03-2023-css */

      .employe-wrapcart-reviewRated-activeClm{
        width: 33.33%;
      }
      .employe-wrapcart-reviewRated-activeRw{
        margin: 0 -16px -20px;
      }
      .employe-wrapcart-reviewRated-activeClm{
        padding: 0 8px;
        margin-bottom: 20px;
      }
      .personal_details_row > *:not(:first-child) .personal_details_each {
        padding-left: 0;
    }
    .profile_content_body_left {
      padding: 30px 10px;
  }
  /* h3, .hThree{
    font-size: 27px;
} */
.career_list li p{
  font-size: 14px;
}
.reviews_block.row .blue_head{
  font-size: 12px;
}
.btn.btn_fill{
  padding: 15px;
  width: 100%;
}
.delect-accout-popup-newWrapMain{
  padding: 100px 25px 40px;
}
.start-rating-mainpopups ul li i{
  display: inline-block;
  width: 35px;
}
}
@media (max-width: 1399px) {
  .employe-wrapcart-job-activeClm {
    width: 33.33%;
  }
  .wrap-form-headrbtm-employerJobs input[type="text"] {
    width: calc(100% - 130px);
  }
  .wrap-form-headrbtm-employerJobs {
    width: 400px;
  }
  .wrap-top-tittle-employer-canditdates {
    width: calc(100% - 400px);
  }
  .toptitl-wrapsrch-employer h1 {
    width: calc(100% - 400px);
  }
  .wrap-top-tittle-employer-canditdates h1 {
    width: auto !important;
  }
  .dash_header{
    font-size: 40px;
  }
  .cmn_hdr p{
    font-size: 22px;
  }
  .small_heading_profile{
    font-size: 18px;
  }
  .cmn_title_head{
    font-size: 30px;
  }
  .career_list li p{
    font-size: 12px;
  }
  .personal_details_each{
    font-size: 12px;
  }
  .blue_btn{
    font-size: 12px;
    padding: 20px 6px;
  }
  .outline_btn{
    font-size: 12px;
    padding: 20px 6px;
  }
  h2.small_head{
    font-size: 18px;
  }
  .employer_details_sec{
    padding: 50px 25px 80px;
  }
  .employer_form_sec{
    margin-top: -80px;
  }
  .custom_radio_block .form_input_radio label span{
    font-size: 20px;
  }
  .radio_head{
    font-size: 20px;
  }
  .post_job_list ul li{
    font-size: 15px;
    padding-left: 22px;
    background-size: 12px;
  }
  .share_icon_list ul li a{
    display: inline-block;
    width: 17px;
  }
  .candidate_review_left{
    padding: 25px 10px;
  }
  .candidate_review_rgt ul li:not(:last-child){
    margin-bottom: 25px;
  }
  .candidate_progress_left p{
    font-size: 16px;
  }
  .reviewer_img img{
    border-radius: 10px;
  }
  .employer_form_sec{
    padding: 60px 0;
  }
  .img-change-part-wrap-topmyAccntTxt h4{
    font-size: 22px;
    margin-bottom: 5px;
  }
  .img-change-part-wrap-topmyAccntTxt p{
    font-size: 16px;
  }
  .delect-accout-popup-newInnr h4{
    font-size: 40px;
  }
  .delect-accout-popup-newInnr p{
    font-size: 20px;
  }
  .delect-accout-popup-newInnr i{
    width: 150px;
    height: 150px;
    top: -75px;
    padding: 40px;
  }
  .delect-accout-popup-newInnr{
    padding: 100px 20px 40px;
  }
  .delect-accout-popup-newInnr a{
    padding: 15px 40px;
  }
  .employerhelpCenter-middle-newWrap h2{
    font-size: 35px;
    padding-bottom: 25px;
  }
  .emplyer-twobtmmlstWrap-wraptw p{
    font-size: 16px;
    padding: 13px 5px;
  }
  .employer-login-mainSec-wrap h1{
    font-size: 25px;
  }
  .btn-loginwrap-googlFcbk ul li a{
    height: 55px;
    font-size: 16px;
  }
  .top-tittle-employer-membershp h1{
    font-size: 40px;
  }
  .top-tittle-employer-membershp{
    font-size: 22px;
  }
  .wrapcrt-emplymembershp-tittl h3{
    font-size: 22px;
  }
  .wrapcrt-emplymembershp-price p{
    font-size: 22px;
  }
  .top-employer-main-notification-tittle h1{
    font-size: 35px;
  }
  .calender-hdr{
    font-size: 40px;
  }
  section.calendar .currentDateDisplay > p{
    font-size: 22px;
  }
  .wrap-star-txticnempl i{
    width: 15px;
  }
  .wrap-star-txticnempl span{
    padding: 3px 10px 3px 6px;
  }
  .salary_amnt span{
    margin-left: 0;
  }
}

@media (max-width: 1199px) {

    /****** 27.03.2023 *********/
    .dash_header {
      font-size: 35px;
      margin-bottom: 5px;
    }
    .cmn_hdr p {
      font-size: 18px;
    }
    .expert_list li p {
      font-size: 14px;
      padding: 7px 15px;
    }
    .career_list li p.boldest_txt {
      font-size: 12px;
    }
    .career_list li p {
      font-size: 12px;
    }
    .popular_topic_wrap > .row > * {
      width: 50%;
      padding: 15px;
  }
  .popular_topic_wrap > .row {
    margin:0 -15px;
  }
  .popular_topic_content h3 {
    font-size: 22px;
  }
  .popular_topic_content ul li {
    font-size: 14px;
    line-height: 1.2;
  }
    /****** 27.03.2023 *********/

    .employer_form_sec{
      padding: 50px 0;
    }
    .left_panel_inner{
      padding: 40px 15px 0;
    }
    .option_list > li > a{
      padding: 18px 10px;
      font-size: 15px;
    }
    .job_btn{
      padding: 18px 10px;
      font-size: 15px;
    }
    .profile_header{
      padding: 25px 0;
    }
    .profile_content_body_left_ftr{
      margin-bottom: 30px;
    }
    .profile_content_body_rgt{
      padding: 20px 15px;
    }
    .cmn_line{
      padding: 25px 0;
    }
    h2.small_head{
      font-size: 16px;
    }
    .cmn_form_block_title{
      padding-bottom: 20px;
    }
    label.form_label{
      font-size: 14px;
    }
    .employer_form_wrap{
      padding: 25px;
    }
    .cmn_title_head{
      font-size: 25px;
    }
    .cmn_border_btm{
      padding-bottom: 20px;
    }
    .input-search-wrap-topHlpcenter input[type=text]{
      height: 50px;
    }
    .help-center-banner-formSearchWrap form input[type=submit]{
      height: 50px;
    }
    .form_block_btn input[type="submit"], .form_block_btn input[type="button"]{
      height: 50px;
    }
    .check_content{
      padding: 8px;
    }
    .check_text{
      padding-left: 5px;
    }
    p.bold_txt{
      font-size: 12px;
    }
    .check_text p{
      font-size: 11px;
    }
    .form_input_check.body_input_check > .row{
      margin: -10px -5px;
    }
    .form_input_check.body_input_check > .row > * {
      padding: 10px 5px;
    }
    .custom_radio_block .form_input_radio label span{
      font-size: 18px;
      line-height: 1.4;
    }
    .radio_head{
      font-size: 18px;
    }
    .post_job_list ul{
      padding: 25px 0;
    }
    .post_job_list ul li{
      font-size: 12px;
    }
    .reviews_block .col-md-6{
      width: 100%;
      margin-bottom: 5px;
    }
    .btn.btn_fill{
      padding: 15px 5px;
      font-size: 14px;
    }
    .reviews_slide_item_inner{
      padding: 25px 10px;
    }
    .reviews_slide_item_inner_top_rgt{
      padding-left: 10px;
    }
    .location_para{
      font-size: 15px;
    }
    .blue_head{
      font-size: 12px;
    }
    .orange_rating_list li a{
      width: 12px;
      display: inline-block;
    }
    .reviewer_img{
      width: 100%;
    }
    .small_heading_profile{
      font-size: 14px;
    }
    .salary_amnt{
      font-size: 12px;
    }
    .candidate_review_slider_sec .rJob_slider_control .slick-dots button{
      height: 30px;
      width: 30px;
      font-size: 12px;
    }
    .employer-my-accnt-table-edtPart table tr td{
      font-size: 14px;
      padding: 20px 10px;
    }
    .img-change-part-wrap-topmyAccntTxt{
      padding-left: 20px;
    }
    .employer-table-accnt-settingswrap{
      padding: 25px 15px;
    }
    .employer-accnt-settngWrap-btn ul li a{
      padding: 15px 50px;
      font-size: 18px;
    }
    .accntemplsettingimg-upload .accntemplsettingimg-edit input + label:after{
      background-size: 12px;
    }
    .employer-accnt-settngWrap-btn ul li{
      padding: 0 10px;
    }
    .employer-accnt-settngWrap-btn ul{
      margin: 0 -10px;
    }
    .delect-accout-popup-newInnr h4{
      font-size: 30px;
    }
    .delect-accout-popup-newInnr p{
      font-size: 16px;
    }
    .delect-accout-popup-newInnr{
      padding: 70px 15px 30px;
    }
    .delect-accout-popup-newInnr i{
      width: 120px;
      height: 120px;
      top: -60px;
    }
    .wrap-top-tittle-employer-canditdates select{
      height: 50px;
      font-size: 12px;
    }
    .wrap-top-tittle-employer-canditdates h1{
      padding-right: 10px;
      font-size: 20px;
    }
    .wrap-form-headrbtm-employerJobs input[type="text"]{
      height: 50px;
      font-size: 12px;
      padding-left: 40px;
      background-position: 16px;
    }
    .wrap-form-headrbtm-employerJobs input[type="submit"]{
      height: 50px;
      font-size: 12px;
    }
    .wrap-form-headrbtm-employerJobs{
      width: 350px;
    }
    .wrap-top-tittle-employer-canditdates {
      width: calc(100% - 350px);
  }
  .left_panel{
    width: 260px;
    flex-basis: 260px;
  }
  .right_panel {
    width: calc(100% - 260px);
    flex-basis: calc(100% - 260px);
    margin-left: auto;
}

.panel_header {
    width: 100%;
}
.single-wrap-all-documents-emplorClm{
  width: 50%;
}
.btn-btmmDocumentwrap-lst a{
  padding: 15px 40px;
}
.toptitl-wrapsrch-employer{
  padding-bottom: 20px;
}
.employerhelpCenter-middle-newWrap h2{
  font-size: 25px;
  padding-bottom: 15px;
}
.wrap-employerTxt-helpcenter{
  font-size: 16px;
}
.employerhelpCenter-middl-single-txt h3{
  font-size: 18px;
}
.employerhelpCenter-middleClm-rght h4{
  font-size: 20px;
}
.employerhelpCenter-middleClm-rght ul li{
  font-size: 14px;
}
.top-wrap-link-btempljbs h4{
  font-size: 12px;
}
.toptitl-wrapsrch-employer h1{
  font-size: 20px;
}
.employer-login-mainSec-wrap{
  padding: 30px 20px;
}
.employer-login-mainSec-wrap h1{
  font-size: 20px;
}
.single-wrapform-login label{
  font-size: 14px;
}
.checkBx-frgtPass-wrap-login a{
  font-size: 14px;
}
.employer-login-mainSec{
  padding: 150px 0 40px;
}
.top-tittle-employer-membershp h1{
  font-size: 35px;
}
.top-tittle-employer-membershp{
  font-size: 18px;
}
.employer-membership-middle-sec{
  padding: 150px 0 40px;
}
.employer-membership-cartsec{
  padding: 40px 0;
  margin-bottom: 20px;
}
.wrapcrt-emplymembershp-tittl h3{
  font-size: 20px;
}
.wrapcrt-emplymembershp-price p{
  font-size: 20px;
}
.wrapcrt-emplymembershp-list ul li{
  font-size: 16px;
  margin-bottom: 10px;
}
.wrapbtn-employer-crtbtnNw a{
  padding: 15px 20px;
}
.employer-membership-cartRw {
  --bs-gutter-x: 15px;
}
.topr-wrap-my-membershipWrap-emplClm{
  padding: 0 15px;
}
.topr-wrap-my-membershipWrap-empyRw{
  margin: 0 -15px;
}
.top-employer-main-notification-tittle h1{
  font-size: 30px;
}
.top-employer-item-notific{
  padding-bottom: 15px;
}
.bttm-employe-notification-wrapTxt{
  padding-top: 15px;
}
.single-notification-item-employer{
  padding: 15px 10px;
}
.single-notification-item-employer:not(:last-child) {
  margin-bottom: 15px;
}
.bttm-employe-notification-wrapTxt p span{
  font-size: 16px;
}
.small-single-wrapFld-inot label{
  font-size: 14px;
}
.snglwrap-fldRegstr-chck label input[type="radio"] + span{
  height: 80px;
}
.wrap-btm-resumes-employeLast i{
  width: 35px;
}
.wrap-all-innr-lstresume-lnks{
  width: calc(100% - 35px);
}
.wrap-all-innr-lstresume-lnks h4{
  font-size: 11px;
}
.wrap-all-innr-lstresume-lnks a{
  font-size: 11px;
}
.top-candist-resume-employes-wrap{
  padding: 10px;
}
.wrap-btm-resumes-employeLast{
  padding: 10px;
}
.emproyes-resume-wrapperWrappertxt .locksi-items-ewmpks{
  font-size: 11px;
}
.emproyes-resume-wrapperWrappertxt{
  padding-left: 5px;
}
.fancy-calender{
  padding: 30px 15px;
}
.personal_details_each{
  font-size: 11px;
}
.profile-newWrap-tittleLnks a{
  font-size: 14px;
}
.profile-newWrap-tittleLnks .blue_head{
  margin: 0;
}
.popup-profile-wrapnewAll .accntemplsettingimg-upload .accntemplsettingimg-preview{
  width: 180px;
  height: 180px;
}
.popup-profile-wrapnewAll .img-change-part-wrap-topmyAccnt{
  width: 180px;
}
.popup-profile-wrapnewAll .accntemplsettingimg-upload .accntemplsettingimg-edit{
  bottom: 10px;
  right: 10px;
}
.popup-profile-wrapnewAll .accntemplsettingimg-upload .accntemplsettingimg-edit input + label{
  width: 30px;
  height: 30px;
}
.profile-popup-allItems .accntemplsettingimg-upload .accntemplsettingimg-edit input + label:after {
  background-size: 12px;
}
.popup-profile-wrapnewAll{
  padding-bottom: 20px;
}
.profile-popup-allItems-tittle p{
  font-size: 18px;
}
.profile-popup-allItems-tittle h2{
  font-size: 30px;
}
.wrap-checkitem-all-boxProfile:nth-child(1){
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.employer-message-secMain .custom-msg-row .custom-msg-col{
  width: 50%;
  margin-bottom: 30px;
}
.employer-message-secMain .custom-msg-row .custom-msg-col.middle-col {
  width: 50%;
  margin-bottom: 30px;
}
.employer-message-secMain .custom-msg-row .custom-msg-col:last-child{
  width: 100%;
  margin-bottom: 0;
}
.panel_body .footer-btm.footer-dash{
  padding: 20px 25px;
}
.panel_body .footer-text p, .panel_body .footer-text p>a, .panel_body .footer-btm .terms-link>li>a{
  font-size: 13px;
}
.employer-login-mainSec.main-home-new-loginSec{
  padding: 60px 0;
}
.employer-main-notification-sec.main-home-new-loginSec{
  padding: 60px 0;
}
.nice_scroll_html2{
  left: 260px !important;
}
.top-wrap-link-btempljbs a{
  width: 22px;
}
.wrap-star-txticnempl span{
  padding: 2px 6px 2px 4px;
}

}

@media (max-width: 1024px) {

}

@media (max-width: 991px) {
  /******** 27.03.2023 *******/
  .toggle_btn {
    display: flex;
  }
  .left_panel {
    transform: translateX(-100%);
    z-index: 999;
  }
  .right_panel {
    width: calc(100%);
    flex-basis: calc(100%);
  }
  .panel_header {
    width: 100%;
    flex-basis: 100%;
  }
  .open-nav .left_panel {
    transform: translate(0);
  }
  .menu_overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    transition: all 0.5s ease;
  }
  .profile_content_body_rgt {
    margin-top: 20px;
  }
  .calender-hdr {
    font-size: 35px;
}
section.calendar .currentDateDisplay > p {
  font-size: 26px;
}

.radio_head {
  font-size: 16px;
}
.ml-4 {
  margin-left: 30px;
}
.custom_radio_block .form_input_radio label span {
  font-size: 15px;
}
.form_input_radio ul li:not(:last-child) {
  margin-right: 25px;
}
.cmn_line {
  padding: 15px 0;
}
.rJob_item.extra_padding{
  padding: 10px;
}
.rJob_slider.extra_margin{
  margin: -10px;
}
.top-wrap-link-btempljbs h4{
  font-size: 12px;
}
.txt-info-employr-jobactives p{
  font-size: 12px;
}
.emplorey-job-active-tw-mddle ul li{
  font-size: 12px;
}
.emplyer-twobtmmlstWrap ul li a{
  font-size: 12px;
}
.inner-employe-job-active-sec{
  padding: 30px 0;
}
.employerhelpCenter-middleRw{
  margin: 0;
}
.employerhelpCenter-middleClm-lft{
  width: 100%;
  margin: 0 0 20px;
  border: none;
  padding: 0;
}
.employerhelpCenter-middleClm-rght{
  width: 100%;
  padding: 0;
}
.employer-membership-cartRw {
  --bs-gutter-y: 15px;
  justify-content: center;
}
.top-tittle-employer-membershp h1{
  font-size: 25px;
  line-height: 1;
}
.hidd_started_txttt_rt{
  max-height: inherit !important;
}
.delect-accout-popup-newWrapMain{
  max-width: 80%;
  padding: 100px 50px 40px;
}
.fancy-calender{
  max-width: 80%;
  width: 100%;
  padding: 30px 35px;
}
.snglwrap-fldRegstr-chck label input[type="radio"] + span{
  height: 60px;
  font-size: 14px;
}
.snglwrap-fldRegstr-chck{
  width: 154px;
  padding: 0 10px;
}
.wrapchkitem-registerFld {
  margin: 0 -10px;
}
.left_panel{
  height: 100%;
  z-index: 9999;
}
.profile-popup-allItems .modal-dialog{
  max-width: 80%;
  width: 100%;
}
.dropdown-menu.dropdown-menu-custom{
  padding: 15px 0;
}
.dropdown-menu.dropdown-menu-custom .dropdown-item{
  padding: 5px 15px;
  font-size: 12px;
}
.employe-wrapcart-reviewRated-activeClm{
width: 50%;
}
}
@media (max-width: 768px){
  .employer-active-jobTab h2.resp-accordion{
    display: none;
  }
}
@media (max-width: 767px) {
  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }


    /******* 27.03.2023 *********/
    .footer-btm.footer-dash {
      padding: 15px 15px;
      flex-wrap: wrap;
    }
    .footer-text {
      width: 100%;
      margin-bottom: 15px;
    }
    .dash_logo {
      width: 40px;
    }
    .panel_header_options > ul > li:not(:last-child) {
      margin-right: 25px;
    }
    button.dropdown_btn {
      font-size: 12px;
    }
    button.dropdown_btn > span {
      margin-right: 5px;
      max-width: 15px;
    }
    button.dropdown_btn.dropdown_btn_arrw {
      padding-right: 15px;
    }
    button.dropdown_btn.dropdown_btn_arrw::after {
      width: 11px;
      height: 11px;
      top: 57%;
    }
    .dropdown-menu.dropdown-menu-custom {
      top: 110% !important;
      min-width: 180px;
      padding: 10px 0 10px;
    }
    .dropdown-menu.dropdown-menu-custom .dropdown-item {
      font-size: 11px;
      padding: 4px 10px;
    }
    .dropdown_list_item_icon {
      margin-right: 5px;
      width: 11px;
      flex-basis: 11px;
    }
    .employer_form_wrap {
      padding: 20px 15px;
    }
    .custom_container {
      padding: 0 15px;
    }
    .small_heading_profile {
      font-size: 20px;
    }
    .cmn_line {
      padding: 20px 0;
    }
    .personal_details_row.row > * {
      width: 33.33%;
    }
    .career_list.row.career_list_row > *:not(:last-child) .career_list_wrap {
      margin-bottom: 15px;
    }
    .share_icon_list ul li a {
      display: inline-block;
      max-width: 15px;
    }
    .profile_content_body_left {
      padding: 25px 25px;
    }
    .profile_content_body_rgt {
      padding: 20px 10px;
    }
    .career_list.row.career_list_row > *:not(:last-child) {
      margin-bottom: 20px !important;
    }
    .calender-time-list li {
      width: calc(100% / 4);
  }
  .fancy-calender {
    width: auto;
    padding: 37px 20px;
  }
  .capsul_radio_block ul li a {
    font-size: 12px;
    padding: 8px 12px;
  }
  .capsul_radio_block ul li:not(:last-child) {
    margin-right: 10px;
  }
  .row.cmn_line .form-group {
    margin: 0 0 15px 0;
  }
  .dash_header{
    font-size: 30px;
  }
  .cmn_hdr p{
    font-size: 16px;
  }
  .profile_content_body{
    margin: 20px 0 40px;
  }
  .employer_form_wrap{
    padding: 20px 15px;
  }
  .employer_details_sec{
    padding: 40px 15px;
  }
  .employer_form_sec{
    margin-top: -60px;
  }
  .cmn_title_head{
    font-size: 22px;
  }
  .popular_topic_content h3{
    font-size: 20px;
  }
  .popular_topic_sec{
    padding: 30px 0;
  }
  .form_input_check.head_input_check label span{
    font-size: 16px;
  }
  .red_btn{
    font-size: 18px;
  }
  .post_job_list ul li{
    width: 100%;
    margin: 0 0 10px;
  }
  .candidate_review_left{
    margin-bottom: 30px;
  }
  .reviewer_img{
    width: 138px;
  }
  .candidate_review_slider_sec .rJob_slider_control .slick-dots li+li{
    margin-left: 3px
  }
  .candidate_review_slider_sec .rJob_slider_control .slick-dots button{
    width: 25px;
    height: 25px;
    font-size: 10px;
  }
  .candidate_review_slider_sec .rjob_dots{
    margin: 0 5px;
  }
  .candidate_review_rgt{
    padding: 30px 15px;
  }
  .candidate_review_slider_sec{
    padding: 30px 0;
  }
  .reviews_block .col-md-6{
    width: 50%;
  }
  .btn.btn_fill{
    padding: 12px 5px;
  }
  .custom-write-reviewWrap{
    padding: 25px 10px;
  }
  .wrap-txttreview-all-popUps h4{
    font-size: 18px;
  }
  .star-txtwrap-wrt-revwpopUp span{
    font-size: 12px;
  }
  .start-rating-mainpopups{
    padding: 25px 10px;
  }
  .start-rating-mainpopups ul li i{
    width: 25px;
  }
  .popup-rating-employers-frmbtn input[type=submit]{
    height: 50px;
  }
  .wrap-txttreview-all-popUps{
    padding-left: 5px;
  }
  .delect-accout-popup-newWrapMain{
    padding: 80px 15px 30px;
    max-width: 90%;
  }
  h2.selected_head{
    font-size: 16px;
  }
  .img-change-part-wrap-topmyAccnt{
    width: 100%;
    margin-bottom: 20px;
  }
  .img-change-part-wrap-topmyAccntTxt{
    width: 100%;
    padding-left: 0;
  }
  .employer-my-accnt-top-edtPart{
    flex-wrap: wrap;
  }
  .img-change-part-wrap-topmyAccntTxt h4{
    font-size: 18px;
  }
  .img-change-part-wrap-topmyAccntTxt p{
    font-size: 14px;
  }
  .employer-my-accnt-table-edtPart table tr td{
    font-size: 11px;
    padding: 15px 5px;
  }
  .employer-my-accnt-table-edtPart table tr td:nth-child(1) {
    width: 30%;
}
.employer-my-accnt-table-edtPart table tr td:nth-child(2) {
  width: 40%;
}
.employer-my-accnt-table-edtPart table tr td:nth-child(3) {
  width: 30%;
}
.edit-tableBtnitem{
  font-size: 11px;
}
.edit-tableBtnitem i{
  width: 15px;
}
.employer-table-accnt-settingswrap{
  padding: 20px 10px;
}
.employer-accnt-settngWrap-btn ul li a{
  padding: 12px 30px;
  font-size: 16px;
}
.delect-accout-popup-newInnr h4{
  font-size: 24px;
}
.delect-accout-popup-newInnr p{
  font-size: 14px;
}
.employe-wrapcart-job-activeClm{
  width: 50%;
}
.employer-active-jobTab .resp-tabs-list li {
  padding: 0 20px 10px !important;
  font-size: 12px;
}
.wrap-form-headrbtm-employerJobs{
  width: 100%;
  padding: 0;
  margin-top: 20px;
}
.wrap-top-tittle-employer-canditdates{
  width: 100%;
}
.toptitl-wrapsrch-employer form{
  width: 100%;
}
.wrap-top-tittle-employer-canditdates{
  flex-wrap: wrap;
}
.wrap-top-tittle-employer-canditdates h1{
  width: 100%;
  margin-bottom: 20px;
}
.wrap-top-tittle-employer-canditdates select{
  width: 100%;
}
.employerhelpCenter-middle-newWrap{
  padding: 30px 15px;
}
.employerhelpCenter-middle-newWrap h2{
  font-size: 20px;
  padding-bottom: 15px;
}
.wrap-employerTxt-helpcenter{
  padding-bottom: 15px;
  font-size: 14px;
}
.employerhelpCenter-middl-singleRighttxt:not(:last-child) {
  margin-bottom: 20px;
}
.employerhelpCenter-middleClm-rght h4{
  font-size: 18px;
}
.wrap-employerTxt-helpcenter span{
  font-size: 14px;
}
.emplyer-twobtmmlstWrap-wraptw ul li a{
  padding: 12px 2px;
  font-size: 12px;
  height: 44px;
}
.btn-new-inrvwsemply{
  padding: 12px 20px;
  font-size: 12px;
  height: 44px;
}
.toptitl-wrapsrch-employer h1{
  width: 100%;
}
.btm-txtwrapjobactiveEmploers a{
  font-size: 12px;
}
.checkBx-frgtPass-wrap-login .form_input_check label{
  padding-left: 30px;
  font-size: 14px;
}
.checkbx-loginWrap{
  width: 100%;
  margin-bottom: 15px;
}
.submit-btnWrap-innrLogin input[type="submit"]{
  height: 50px;
  font-size: 16px;
}
.checkBx-frgtPass-wrap-login{
  margin-bottom: 20px;
}
.btn-loginwrap-googlFcbk ul li a{
  height: 50px;
  font-size: 14px;
}
.btn-loginwrap-googlFcbk{
  margin-bottom: 30px;
}
.btn-loginwrap-googlFcbk ul li{
  margin-bottom: 20px;
}
.or-txtwrapLogin{
  margin-bottom: 20px;
}
.loginwrap-btn-txtEmployer{
  font-size: 14px;
}
.employer-login-mainSec-wrap{
  padding: 20px 10px;
}
.wrapcrt-emplymembershp-tittl h3{
  font-size: 18px;
}
.wrapcrt-emplymembershp-price{
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.wrapcrt-emplymembershp-price p{
  font-size: 16px;
}
.topr-wrap-my-membershipWrap-emplClm{
  width: 100%;
  margin-bottom: 20px;
}
.topr-wrap-my-membershipWrap-emplyr{
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.employe-wrapcart-reviewRated-activeClm{
  width: 50%;
}
.employer-active-jobTab .resp-tab-content{
  padding: 20px 0;
}
.top-employer-main-notification-tittle h1{
  font-size: 24px;
}
.top-employer-main-notification-tittle{
  margin-bottom: 15px;
}
.small-single-wrapFld-inot{
  width: 100%;
}
.snglwrap-fldRegstr-chck label input[type="radio"] + span{
  height: 60px;
  font-size: 14px;
}
.snglwrap-fldRegstr-chck{
  padding: 0 8px;
  width: 50%;
}
.wrapchkitem-registerFld{
  margin: 0 -8px;
}
.form-group{
  margin-bottom: 15px;
}
.captcha-imgLogin-out{
  max-width: 75%;
  margin: 0 auto 10px 0;
}
.wrap-btm-resumes-employeLast i{
  width: 30px;
}
.wrap-all-innr-lstresume-lnks{
  width: calc(100% - 30px);
}
.delect-accout-popup-newInnr i{
  width: 80px;
  height: 80px;
  top: -40px;
  padding: 25px;
}
section.calendar .ui-datepicker .ui-datepicker-calendar a{
  width: 20px;
  height: 20px;
  font-size: 12px;
}
section.calendar .ui-datepicker .ui-datepicker-year, section.calendar .ui-datepicker .ui-datepicker-month{
  font-size: 14px;
}
.calender-submit a{
  padding: 15px 20px;
  height: 50px;
}
.calender-submit input[type="submit"]{
  height: 50px;
}
.ui-datepicker th {
  padding: 20px 5px;
  font-size: 14px;
}
.single-wrapform-login input[type="email"], .single-wrapform-login input[type="password"]{
  height: 50px;
}
.small-single-wrapFld-inot input[type="text"]{
  height: 50px;
}
.wrap-item-frm-profilePopups{
  width: 100%;
  margin: 0 0 10px;
}
.profile-popup-allItems .modal-body{
  padding: 30px 15px;
}
.select-option-popupnews{
  width: 100%;
  margin-bottom: 10px
}
.top-selectpopup-newworkexp-lst{
  flex-wrap: wrap;
}
.small-fld-education-profile-pop{
  width: 100%;
  margin-bottom: 20px;
}
.sinlge-wrappopup-frmlfdcrse.big{
  width: 100%;
  margin-bottom: 10px;
}
.sinlge-wrappopup-frmlfdcrse{
  width: 100%;
  margin-bottom: 10px;
}
.profile-popup-allItems .account_crt_dlt_modal_inner{
  padding: 20px 10px;
}
.new-popupsinwrap-txtpopiexp p{
  font-size: 16px;
}
.profile-popup-allItems-tittle p{
  font-size: 16px;
}
.profile-popup-allItems-tittle h2{
  font-size: 24px;
  line-height: 1;
  margin-bottom: 15px;
}
.single-tw-wrap-form-txt{
  width: 100%;
}
.wrap-all-edct-popup-wrap{
  flex-wrap: wrap;
}
.singlw-ppiodpedcvtn-wrap{
  margin-bottom: 10px;
  padding-right: 5px;
}
.sinlge-wrappopup-frmlfdcrse.bgimg input[type=text]{
  background-position: 96%;
}
.single-tw-wrap-form-txt.threwrap{
  width: 100%;
}
.single-tw-wrap-form-txt.threwrap.datettes input[type=text]{
  background-position: 2%;
}
.profile-popup-allItems .modal-dialog{
  max-width: 96%;
}
.medium-wrap-popup-textinpt-org{
  width: 100%;
}
.employer-message-secMain .custom-msg-row .custom-msg-col{
  width: 100%;
}
.employer-message-secMain .custom-msg-row .custom-msg-col.middle-col {
  width: 100%;
}
.employer-login-mainSec.main-home-new-loginSec{
  padding: 40px 0;
}
.employer-main-notification-sec.main-home-new-loginSec{
  padding: 40px 0;
}
.right-wrap-noftic-itemInnr p{
  padding-right: 15px;
}
.fancy-calender{
  max-width: 98%;
}
.panel_header .dropdown-menu.dropdown-menu-custom{
  min-width: 140px;
}
}


@media (max-width: 575px) {

  .calender-form-wrap {
    padding: 20px 0px;
  }
  .calender-form-wrap input[type="text"]{
    padding: 15px 15px;
    font-size: 11px;
}
.popular_topic_wrap > .row > * {
  width: 100%;
}
.capsul_radio_block ul li{
  width: auto;
  padding: 10px 5px;
  margin: 0 !important;
}
.capsul_radio_block ul{
  margin: -10px -5px;
}
.employe-wrapcart-job-activeClm{
  width: 100%;
}
.employer-active-jobTab .resp-tabs-list li {
  padding: 0 10px 10px !important;
  font-size: 11px;
}
.single-wrap-all-documents-emplorClm{
  width: 100%;
}
.emplyer-twobtmmlstWrap-wraptw p{
  padding: 0;
  font-size: 14px;
}
.employe-wrapcart-reviewRated-activeClm{
  width: 100%;
}
.top-employer-item-notific{
  flex-wrap: wrap;
}
.left-item-wrap-innt-nameimg{
  width: 100%;
  margin-bottom: 10px;
}
.right-wrap-noftic-itemInnr{
  width: 100%;
}
.footer-text p{
  max-width: 200px;
  margin: 0 auto;
}
.panel_body .footer-text p{
  max-width: 180px;
  margin: 0 auto;
}
.candidate_review_slider_sec .rJob_slider_control .slick-dots button{
  width: 23px;
  height: 23px;
}
.rJob_slider_control .slick-arrow{
  height: 20px !important;
}
}

@media (max-width: 479px) {

  .panel_header_options button.dropdown_btn {
    font-size: 0;
  }
  .cmn_hdr p {
    font-size: 14px;
  }
  .dash_header {
    font-size: 22px;
  }
  .personal_details_row.row > * {
    width: 100%;
  }
  .personal_details_row > *:not(:first-child) .personal_details_each {
    padding-left: 0;
  }
  .personal_details_row > *:not(:last-child) {
    border-right: 0;
    margin-bottom: 15px;
  }
  .expert_list li p {
    font-size: 12px;
  }
  .candidate_profile_upper figure {
    width: 100px;
    height: 100px;
}
.career_list_wrap_for_big_img .career_list_img {
  flex-basis: 40px;
}
.career_list_wrap_for_big_img .career_list_data {
  flex-basis: calc(100% - 40px);
}
.career_list li p {
  font-size: 12px;
}
.calender-hdr {
  font-size: 22px;
}
section.calendar .currentDateDisplay > p {
  font-size: 16px;
}
section.calendar .ui-datepicker {
  overflow: auto;
}
.calender-time-list li {
  width: 50%;
}
.calender-submit .submit-list {
  flex-wrap: wrap;
}
.submit-list li {
  padding-right: 0;
  width: auto;
  margin: 0 10px 0 0;
}
.submit-list li:not(:last-child){
  margin-bottom: 15px;
}
.calender-submit {
  padding: 20px 0;
}
.calender-form-wrap > * {
  width: 100%;
  padding: 8px;
}
.calender-form-wrap{
  margin: -8px;
}
.help-center-banner-formSearchWrap form {
  flex-wrap: wrap;
}
.input-search-wrap-topHlpcenter {
  width: 100%;
  padding-right: 0;
  margin-bottom: 15px;
}
.invite_search_block_left .form-control {
  min-width: auto;
}
.invite_search_block_left {
  width: 100%;
  margin-bottom: 10px;
}
.radio_head {
  font-size: 15px;
  margin-bottom: 15px;
}
.ml-4 {
  margin-left: 0;
  width: 100%;
}
.employer-accnt-settngWrap-btn ul li{
  width: 100%;
  margin-bottom: 10px;
}
.employer-accnt-settngWrap-btn ul li a{
  width: 100%;
  text-align: center;
}
.wrap-form-headrbtm-employerJobs{
  flex-wrap: wrap;
}
.wrap-form-headrbtm-employerJobs input[type="text"]{
  width: 100%;
  margin-bottom: 10px;
}
.wrap-form-headrbtm-employerJobs input[type="submit"]{
  width: 100%;
  margin: 0;
}
.employer-membership-cartWRap{
  padding: 15px 10px;
}
.wrapcrt-emplymembershp-tittl i{
  padding-right: 5px;
}
.candidate_profile_upper.profile-new-main figure a{
  bottom: 5px;
  right: 5px;
}
.single-item-ckbx-prolf{
  width: 100%;
}
.txtpopup-profile-keyman .slected_skills.cmn_line{
  padding-left: 5px;
}
}

@media (max-width: 374px) {
  .blue_btn ,  .outline_btn{
    font-size: 12px;
  }
  .small_heading_profile {
    font-size: 17px;
}
.left_panel {
  width: 250px;
  flex-basis: 250px;
}
.job_btn {
  font-size: 14px;
  padding: 15px 12px;
}
.option_list > li > a {
  font-size: 14px;
  padding: 15px 10px;
}
.capsul_radio_block ul li {
  width: calc(100% / 2);
}
input.form_block_submit {
  min-width: 120px;
}
.custom_radio_block .form_input_radio label span {
  font-size: 13px;
}
.form_input_radio ul li:not(:last-child) {
  margin-right: 10px;
}
.edit-tableBtnitem{
  font-size: 10px;
}
.employer-my-accnt-table-edtPart table tr td{
  font-size: 10px;
}
.candidate_review_slider_sec .rJob_slider_control .slick-dots button{
  width: 20px;
  height: 20px;
  font-size: 8px;
}
}