/*
  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; }

/* 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; }

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