:root {
  --c-black: #000;
  --c-white: #fff;
  --c-grey-100: #f8f8f8;
  --c-grey-150: #e4e7eb;
  --c-grey-200: #dcdbdc;
  --c-grey-250: #caced7;
  --c-grey-300: #a3aaae;
  --c-grey-400: #999;
  --c-grey-450: #656565;
  --c-grey-500: #4c4a44;
  --c-link: #ef7a42;
  --c-blue: #009edb;
  --c-dark-background: #151515;
  --c-global-border-dark: var(--c-black);
  --c-global-border-light: var(--c-grey-300);
  --c-global-border: #999;
  --c-page-background: #fff;
  --c-subtle-background: #eee;
  --f-sans: "HelveticaNeueLTStd";
  --f-serif: "Chronicle Display Roman";
  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900; }

/***** career css *****/
.wizard {
  margin-bottom: 50px; }

.wizard-inner {
  position: relative; }
  .wizard-inner .nav-tabs {
    position: relative;
    margin: 20px auto;
    margin-bottom: 0;
    border: 0; }
    .wizard-inner .nav-tabs > li {
      width: 33.33%;
      position: relative; }
      .wizard-inner .nav-tabs > li a {
        margin: 0 auto 30px auto;
        padding: 0;
        border: 0; }
        .wizard-inner .nav-tabs > li a:hover {
          background: transparent;
          border: 0; }
        @media (max-width: 800px) {
          .wizard-inner .nav-tabs > li a {
            margin: 0 auto 15px auto; } }
        @media (max-width: 767px) {
          .wizard-inner .nav-tabs > li a .round-txt {
            display: none; } }
      .wizard-inner .nav-tabs > li.active a,
      .wizard-inner .nav-tabs > li.active a:hover,
      .wizard-inner .nav-tabs > li.active a:focus {
        color: #555555;
        cursor: default;
        border: 0;
        border-bottom-color: transparent;
        background-color: transparent; }
      .wizard-inner .nav-tabs > li.active .round-number {
        background-color: var(--c-blue);
        color: #fff;
        font-weight: var(--fw-900); }
      .wizard-inner .nav-tabs > li.active .round-txt {
        color: var(--c-blue);
        font-weight: var(--fw-900); }
        @media (max-width: 767px) {
          .wizard-inner .nav-tabs > li.active .round-txt {
            display: block; } }
      .wizard-inner .nav-tabs > li:last-child::before {
        display: none; }
      .wizard-inner .nav-tabs > li::before {
        content: "";
        width: 100%;
        height: 2px;
        background: #c4c4c4;
        position: absolute;
        left: 50%;
        top: 20px; }
        @media (max-width: 768px) {
          .wizard-inner .nav-tabs > li::before {
            top: 15px; } }
      .wizard-inner .nav-tabs > li:after {
        content: "";
        width: 0;
        height: 2px;
        background: var(--c-blue);
        position: absolute;
        left: 50%;
        top: 20px;
        transition: all 0.6s ease; }
        @media (max-width: 768px) {
          .wizard-inner .nav-tabs > li:after {
            top: 15px; } }
      .wizard-inner .nav-tabs > li.checked:last-child:after {
        width: 0; }
      .wizard-inner .nav-tabs > li.checked:after {
        width: 100%; }
      .wizard-inner .nav-tabs > li.checked .round-number {
        background-color: var(--c-blue);
        color: #fff;
        font-weight: var(--fw-900);
        -moz-transition: all 0.7s ease-in-out;
        -o-transition: all 0.7s ease-in-out;
        -webkit-transition: all 0.7s ease-in-out;
        transition: all 0.7s ease-in-out; }
      .wizard-inner .nav-tabs > li.checked .round-txt {
        color: var(--c-blue);
        font-weight: var(--fw-900);
        -moz-transition: all 0.7s ease-in-out;
        -o-transition: all 0.7s ease-in-out;
        -webkit-transition: all 0.7s ease-in-out;
        transition: all 0.7s ease-in-out; }

.wizard-body {
  position: relative; }
  .wizard-body .cl_fm_datepicker {
    padding: 0; }
  .wizard-body .cr_fm_input,
  .wizard-body .cr_fm_textarea,
  .wizard-body .cl_fm_datepicker input {
    border: 1px solid var(--c-global-border);
    background-color: #fff;
    color: var(--c-black);
    outline: none;
    font-size: 16px;
    font-family: var(--fw-400); }
    .wizard-body .cr_fm_input:focus,
    .wizard-body .cr_fm_textarea:focus,
    .wizard-body .cl_fm_datepicker input:focus {
      border-color: var(--c-link);
      outline: none;
      box-shadow: none;
      border-width: 2px; }
    .wizard-body .cr_fm_input::placeholder,
    .wizard-body .cr_fm_textarea::placeholder,
    .wizard-body .cl_fm_datepicker input::placeholder {
      color: #959595; }
  .wizard-body .cr_fm_input,
  .wizard-body .cl_fm_datepicker input {
    height: 40px; }
  .wizard-body button {
    min-width: 140px; }
    @media (max-width: 480px) {
      .wizard-body button {
        min-width: 100%; } }
  .wizard-body .btn-selectpicker .dropdown-toggle {
    height: 40px; }
  .wizard-body label.error {
    font-weight: normal;
    margin-top: 5px;
    margin-bottom: 0; }

.round-number {
  width: 40px;
  height: 40px;
  display: inline-block;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  background: #c4c4c4;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  line-height: 40px;
  font-family: var(--fw-500);
  z-index: 1; }
  @media (max-width: 768px) {
    .round-number {
      width: 30px;
      height: 30px;
      line-height: 30px; } }

.round-txt {
  padding-top: 50px;
  display: block;
  text-align: center;
  color: var(--c-grey-500); }
  @media (max-width: 768px) {
    .round-txt {
      padding-top: 35px; } }

.career-box {
  padding: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px; }
  @media (max-width: 580px) {
    .career-box {
      padding: 20px; } }
  @media (max-width: 320px) {
    .career-box {
      padding: 20px 15px; } }

/*# sourceMappingURL=career.css.map */
