/*
  READ THIS!!!
  This is the output of base.scss (SASS)
  Make changes on templates/css/base.scss
  then compile with SASS:
  sass --watch templates/css/base.scss:templates/css/base.css
*/
.flex-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center; }
  .flex-wrapper.col {
    flex-direction: column; }
  .flex-wrapper.fill {
    align-items: stretch; }
  .flex-wrapper .stretch {
    align-self: stretch; }
  .flex-wrapper .grow {
    flex-grow: 1; }
  .flex-wrapper.around {
    justify-content: space-around; }
  .flex-wrapper.between {
    justify-content: space-between; }
  .flex-wrapper.start {
    justify-content: flex-start; }
  .flex-wrapper.end {
    justify-content: flex-end; }
  .flex-wrapper.center {
    align-items: center; }
  .flex-wrapper.bottom {
    align-items: flex-end; }
.align-top, .align-left {
  align-self: flex-start; }
.align-bottom, .align-right {
  align-self: flex-end; }

.top-bar {
  border: none;
  min-height: auto; }
  .top-bar .nav, .top-bar ul {
    background: none;
    margin: 0; }
    .top-bar .nav ul, .top-bar ul ul {
      background: white; }
    .top-bar .nav li:hover ul, .top-bar ul li:hover ul {
      display: block; }
    .top-bar .nav li a, .top-bar ul li a {
      font-size: 14px;
      padding: 6px 12px; }
  .top-bar .collapse {
    height: auto !important; }
    .top-bar .collapse.in {
      display: inherit; }
  .top-bar .dropdown-nav li {
    float: none;
    display: inline-block; }

.spacer {
  margin: 15px 0 0; }
  .spacer.lg {
    margin-top: 61px; }

.no-top {
  margin-top: 0; }

.top-space {
  margin-top: 18px; }

.bold {
  font-weight: bolder;
  font-family: 'Arial'; }

.block {
  background-color: white;
  padding: 20px;
  margin-bottom: 0px;
  margin-top: 0; }
  .backend .block {
    border: 1px solid #ddd; }
  .block.space {
    margin-top: 10px; }
  .block h1, .block h2, .block h3, .block h4, .block h5 {
    font-family: 'Arial Black';
    font-weight: bold; }
  .block p {
    margin-bottom: 30px; }

h1, h2, h3, h4, h5 {
  white-space: normal; }

.footer {
  height: 250px;
  margin-top: 300px;
  padding-top: 35px;
  clear: both; }
  .footer a {
    color: inherit; }
  .footer li {
    display: inline; }
    .footer li:not(:last-child):after {
      content: ' | '; }

.slider-parent {
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s; }
  .slider-parent.out {
    overflow: hidden;
    width: 0;
    padding: 0; }
  .slider-parent .slider {
    transition: transform 0.5s; }
    .slider-parent .slider.out {
      transform: translate(0px); }

.slider-grower {
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

.slider-trigger {
  position: absolute;
  margin-left: -32px; }

input.editable {
  margin: 0px 1px;
  outline: none;
  box-shadow: none;
  border: none; }

/* Bootstrap Overrides */
a {
  color: #3b91a6; }
  a:hover {
    color: #3c3c3c; }
  .btn-group .btn a {
    color: inherit; }

.autocomplete-suggestions {
  position: absolute;
  border: 1px solid #ddd;
  background-color: white;
  max-height: 150px;
  overflow-y: auto;
  list-style-type: none;
  padding: 0;
  margin: 40px 0;
  width: 96%;
  z-index: 1000;
}

.autocomplete-suggestions li {
  display: flex;
  align-items: center;
  padding: 8px;
  cursor: pointer;
}

.autocomplete-suggestions li:hover {
  background-color: #f0f0f0;
}

.employer-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 3px;
}

.input-with-icon {
  position: relative;
}

.employer-icon-inside {
  position: absolute;
  left: 8px; /* Adjust based on preference */
  top: 70%;
  transform: translateY(50%);
  width: 20px;
  height: 20px;
  border-radius: 3px;
  pointer-events: none; /* Prevent click events on the icon */
}

.employer-input {
  padding-left: 32px; /* Add enough padding to avoid overlap with the icon */
}
.btn {
  color: #333; }
  .btn.btn-primary {
    color: #fff;
    background-color: #ff40b4;
    border: 1px solid #ff40b4; }
  .btn.btn-yellow {
    background-color: #ffff93;
    border: 1px solid #e8e876; }
  .btn.btn-primary, .btn.btn-default, .btn.btn-info, .btn.btn-warning, .btn.btn-danger, .btn.btn-success, .btn.btn-yellow {
    padding: 8px 12px;
    border-radius: 0; }
  .btn.btn-primary, .btn.btn-info, .btn.btn-warning, .btn.btn-danger, .btn.btn-success {
    color: #fff; }
  .btn i.fa {
    padding: 3px; }
  .btn-group .btn {
    border-radius: 4px; }
  .btn.btn-sm {
    padding: 5px 10px;
    font-size: 14px; }
  .btn:focus {
    outline: none; }

.open > .dropdown-toggle.btn-primary {
  background-color: #6a6a6a;
  border: 1px solid #505050; }

.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover, .open > .dropdown-toggle.btn-primary:active, .open > .dropdown-toggle.btn-primary:focus {
  background-color: #6a6a6a;
  border: 1px solid #505050; }
.btn-primary:active:focus, .open > .dropdown-toggle.btn-primary:active:focus {
  background-color: #373737;
  border: 1px solid #505050; }
.btn-primary[disabled]:hover, .open > .dropdown-toggle.btn-primary[disabled]:hover {
  background-color: buttonface;
  border: 1px solid buttonface; }

.btn-yellow:hover, .btn-yellow:active, .btn-yellow:focus {
  background-color: #f9f974; }

.modal-body {
  max-height: calc(100vh - 210px);
  overflow-y: auto; }



/* Design tokens */
:root {
  --card-bg: #fff;
  --border: #e6e8eb;
  --border-strong: #c9ced6;
  --text: #0f172a;
  --muted: #6b7280;
  --brand: #db7da3;
  --brand-weak: rgba(59,130,246,.12);
  --success: #16a34a;
  --error: #ef4444;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --radius: 16px;
}

.uploader-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.uploader-header h1 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--text);
}
.uploader-header .emoji { margin-left: 4px; }
.uploader-header .sub {
  margin: 0 0 6px;
  color: var(--muted);
}
.uploader-header .meta {
  margin: 0 0 16px;
  font-size: .9rem;
  color: var(--muted);
}

.alert {
  display: flex; gap: 10px; align-items: center;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.3);
  color: var(--error);
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.alert .alert-close {
  margin-left: auto; background: transparent; border: 0; font-size: 18px; cursor: pointer; color: inherit;
}

.dropzone-modern {
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fafbfc, #fff);
  padding: 24px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .05s ease;
  cursor: pointer;
  outline: none;
}
.dropzone-modern:hover { border-color: var(--brand); box-shadow: 0 6px 18px rgba(59,130,246,.08); }
.dropzone-active { border-color: var(--brand); background: var(--brand-weak); }
.dropzone-reject { border-color: var(--error); background: rgba(239,68,68,.06); }
.dropzone-modern.as-button { width: 100%; text-align: left; }

.dz-inner { display: flex; gap: 16px; align-items: center; }
.dz-icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #eef2ff; }
.dz-icon .fa { font-size: 20px; color: var(--brand); }
.dz-icon.spin .fa { animation: spin 1s linear infinite; }

.dz-text { display: grid; gap: 4px; }
.dz-text strong { color: var(--text); }
.muted { color: var(--muted); font-size: .95rem; }
.linklike { background: transparent; border: 0; color: var(--brand); cursor: pointer; text-decoration: underline; padding: 0; }

.file-chip {
  display: inline-flex; gap: 8px; align-items: center;
  margin-top: 6px; padding: 6px 10px; border-radius: 999px;
  background: #f3f4f6; color: var(--text); font-size: .92rem;
}
.file-chip .name { max-width: 320px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-chip .remove { border: 0; background: transparent; margin-left: 2px; cursor: pointer; font-size: 16px; }

.actions {
  display: flex; gap: 12px; justify-content: flex-end; margin-top: 16px;
}


.manual-row { margin-top: 12px; text-align: center; color: var(--muted); }

@keyframes spin { to { transform: rotate(360deg); } }

.hero .strap .btn.upload {
  padding: 18px 20px;
    position: relative;
    top: 0px;
    outline: 0 solid transparent;
    outline-color: transparent;
    background-color: #ff46b6;
    border: none;
    box-shadow: none;
    width: 79px;
  display: inline-block;
    left: 60px;
}

.btn-block {
      animation: none;
    outline: 0px solid #252525;
    border-radius: 0px;
}

.register-steps h4 {
  text-align: center;
}

#registerNote {
  display:none;
}



.cv-upload {
    left: 100%;
    position: relative;
    display:none;
    transition: all 1s ease;
}

.cv-upload-open {
  left:0%;
  display:block;
}

/* Bootstrap Nav Tabs */
.nav-tabs > li > a {
  border-radius: 0;
  cursor: pointer; }
.nav-tabs > li.active > a {
  border-top: 2px solid #373737; }
  .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    border-top: 2px solid #373737; }

/* Bootstrap Table */
.table tbody tr th {
  border-top: none; }
.table tbody tr td {
  vertical-align: middle; }

.well {
  border-radius: 0; }

/* Mobile and Tablet xs & sm */
@media (max-width: 780px) {
  .top-bar {
    display: block; }
    .top-bar > div, .top-bar div > ul {
      display: block; }
    .top-bar #navbar, .top-bar #front-nav {
      text-align: center; }
    .top-bar .collapse {
      display: none; }
      .top-bar .collapse.in {
        display: block; }

  .nav-tabs > li {
    float: none; }

  .nav-tabs > li.active > a {
    border-top: none;
    border-left: 2px solid #373737;
    padding-left: 14px; }
    .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
      border-top: none;
      border-left: 2px solid #373737; } }
/** End Mobile */
.side-tabs {
  border-bottom: none; }
  .side-tabs li {
    float: none; }

.side-tabs > li > a {
  border-bottom: none; }
.side-tabs > li.active > a {
  border-top: none;
  border-right: none;
  border-left: 2px solid #373737;
  padding-left: 14px;
  background: #f8f8f8; }
  .side-tabs > li.active > a:focus, .side-tabs > li.active > a:hover {
    border-top: none;
    border-right: none;
    border-left: 2px solid #505050;
    background: #fbfbfb; }

.page-header {
  margin: 0 0 20px; }

label {
  font-family: Helvetica;
  font-weight: 500; }

.share-links a {
  margin-left: 10px;
  align-self: flex-start; }

.nav-links a {
  color: black;
  padding: 10px 0px 0px;
  border-bottom: 5px solid #dedede;
  text-transform: uppercase;
  text-decoration: none;
  margin-right: 20px; }
  .nav-links a.active {
    border-color: #505050; }

/* Dropzone */
.dropzone {
  height: 200px;
  border: 2px dashed #b9b9b9;
  cursor: pointer; }

.detail:first-child {
  margin-top: 0px; }
.detail:last-child {
  margin-bottom: 0px; }

.sweet-alert div input {
  display: initial;
  height: auto;
  margin: auto;
  padding: 6px 12px; }

.main-info {
  margin-bottom: 14px; }

#applicantName {
  font-size: 28px; }

.more-info {
  display: none; }

.cand-cv-left {
  border-right: 1px solid #e4e4e4; }

.cand-tabs li {
  float: none !important;
  display: inline-block; }

#profile-pic {
  cursor: pointer;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center; }

.cand-avail {
  color: #2fa02f;
  line-height: 23px;
  font-weight: bold;
  font-size: 16px; }

.avSoon {
  color: #ff7106 !important; }

#appReferences {
  overflow: scroll !important; }


  /*# Custom changes to base.css as sass not working, reverse engineer later 08/25 */


/* Apply only inside CKEditor 5 content */
.ck-content img {
  max-width: 100%;
  height: auto;
}

/* Centered alignment */
.ck-content figure.image {
  margin: 0 auto;
  text-align: center;
}

/* Left/right floats */
.ck-content figure.image.image-style-side {
  float: right;
  margin-left: 1em;
}

.ck-editor__editable {
  min-height: 200px; /* or whatever you prefer */
}
  .Select--single>.Select-control .Select-value, .Select-placeholder {

    top: 8px

  }

  .Select-control {
    height: 50px
  }

  .form-control {
  height:50px
}

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