/* 
    Author     : hS
*/

/**-------------------------
    Models 
--------------------------*/

:root {
    --jfl-color-primary: #FF4D00; 
    --jfl-color-secondary: #113E3F;
    --jfl-color-tiertiary: #ABABAB;
    --jfl-color-main: #FFA300; /** Main */
    --jfl-color-main-hover: #FEC766; /** Main */
    --jfl-color-main-fade: #FDE5BB; /** Main */
    --jfl-color-neutral: #D0D0D0;
    --jfl-color-block-background: #F4F6F8; /* #F6F6F6 */
    --jfl-color-black: #222222;
    --jfl-color-smartrecruiters: #00AE41;
    
    --jf-font-family-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

a, .a {
    color: var(--jfl-color-main);
    /*text-decoration: underline;*/
}
a:hover, .a:hover {
    color: var(--jfl-color-main-hover);
    text-decoration: underline;
}

a.jfl-secondary {
    color: var(--jfl-color-black);
}
a.jfl-secondary:hover,
a.jfl-secondary:active,
a.jfl-secondary:focus
{
    color: var(--jfl-color-black);
    opacity: 0.7;
}

.btn-jfl-primary {
    font-weight: 600;
    color: var(--jfl-color-primary);
    background-color: white;
    border: 0 none;
    box-shadow: none;
}
.btn-jfl-primary:hover {
    background-color: var(--jfl-color-primary);
    color: white;
}
.btn-jfl-primary:hover,
.btn-jfl-primary:focus,
.btn-jfl-primary:active
{
    border: 0 none;
    box-shadow: none;
}

.btn-jfl-black {
    font-weight: normal;
    background-color: var(--jfl-color-black);
    color: white;
    padding: 10px 30px;
    transition: all 0.2s ease-in-out; 
}
.btn-jfl-black.btn-sm {
    font-weight: normal;
    padding: 6px 10px;
}
.btn-jfl-black:hover {
    color: white;
    opacity: 0.7;
}

.btn-jfl-white {
    font-weight: normal;
    background-color: rgba(255,255,255,0.95);
    color: #222222;
    padding: 10px 30px;
    border-radius: 36px;
    transition: all 200ms ease-in-out; 
}
.btn-jfl-white:hover {
    color: var(--jfl-color-primary);
    background-color: rgba(255,255,255,1);
}
.btn-jfl-white:hover,
.btn-jfl-white:focus,
.btn-jfl-white:active
{
    color: var(--jfl-color-primary);
    box-shadow: none;
}

.btn-jfl-transparent {
    font-weight: normal;
    background-color: transparent;
    color: #222222;
    padding: 10px 30px;
    transition: all 200ms ease-in-out; 
}
.btn-jfl-transparent:hover {
    color: #222222;
    opacity: 0.7;
    background-color: transparent;
}
.btn-jfl-transparent:hover,
.btn-jfl-transparent:focus,
.btn-jfl-transparent:active
{
    color: #222222;
    opacity: 0.7;
    box-shadow: none;
}

.btn-jfl-main {
    font-weight: bold;
    background-color: var(--jfl-color-main);
    opacity: 1;
    color: black;
    padding: 10px 30px;
    border-radius: 36px;
    transition: all 200ms ease-in-out;
}
.btn-jfl-main:hover {
    opacity: 1;
    color: black;
    background-color: var(--jfl-color-main-hover);
}
.btn-jfl-main:hover,
.btn-jfl-main:focus,
.btn-jfl-main:active
{
    box-shadow: none;
}
.btn-jfl-main.disabled,
.btn-jfl-main:disabled {
    opacity: 0.5;
}
.btn-jfl-main.disabled:hover,
.btn-jfl-main:disabled:hover {
    opacity: 0.5;
    background-color: var(--jfl-color-main);
}

.btn-jfl-main-border {
    opacity: 1;
    font-weight: bold;
    background-color: transparent;
    color: black;
    padding: 10px 30px;
    transition: all 200ms ease-in-out;
    border: 1px solid var(--jfl-color-main);
    border-radius: 36px;
}
.btn-jfl-main-border:hover {
    opacity: 1;
    color: black;
    background-color: var(--jfl-color-main);
}
.btn-jfl-main-border:hover,
.btn-jfl-main-border:focus,
.btn-jfl-main-border:active
{
    border: 1px solid var(--jfl-color-main);
    box-shadow: none;
}
.btn-jfl-main-border:disabled,
.btn-jfl-main-border.disabled
{
    box-shadow: none;
    color: #aaa;
    border-color: #aaa;
}

.btn-jfl-main-border-filled {
    opacity: 1;
    font-weight: bold;
    background-color: white;
    color: var(--jfl-color-main);
    padding: 10px 30px;
    transition: all 200ms ease-in-out;
    border: 1px solid var(--jfl-color-main);
    box-shadow: none;
}
.btn-jfl-main-border-filled:hover,
.btn-jfl-main-border-filled:focus,
.btn-jfl-main-border-filled:active
{
    opacity: 1;
    color: white;
    border: 1px solid var(--jfl-color-main);
    background-color: var(--jfl-color-main);
    box-shadow: none;
}
.btn-jfl-main-border:disabled,
.btn-jfl-main-border.disabled
{
    box-shadow: none;
    color: #aaa;
    border-color: #aaa;
}

.btn-jfl-black-border {
    opacity: 1;
    font-weight: bold;
    background-color: transparent;
    color: var(--jfl-color-black);
    padding: 10px 30px;
    transition: all 200ms ease-in-out;
    border: 1px solid var(--jfl-color-black);
}
.btn-jfl-black-border:hover {
    opacity: 1;
    color: #FFFFFF;
    background-color: var(--jfl-color-black);
}
.btn-jfl-black-border:hover,
.btn-jfl-black-border:focus,
.btn-jfl-black-border:active
{
    border: 1px solid var(--jfl-color-black);
    box-shadow: none;
}
.btn-jfl-black-border:disabled,
.btn-jfl-black-border.disabled
{
    box-shadow: none;
    color: #aaa;
    border-color: #aaa;
}

.btn-jfl-rounded {
    border-radius: 36px;
}

.btn.icon {
    padding: 0;
    height: 50px;
    width: 50px;
    line-height: 50px;
}


.label-jfl {
    font-size: 1.1rem;
    line-height: 1.1rem;
    vertical-align: bottom;
    padding-right: 15px;
    padding-top: 15px;
}

.input-jfl {
    border: 1px solid #fafafa;
    border-radius: 1px;
    box-shadow: 0px 0px 24px -5px rgba(8,65,176,0.2);
    min-width: 250px;
    padding: 15px;
    font-size: 1.1rem;
}

.input-jfl:focus {
    border: 1px solid var(--jfl-color-main);
    outline: none;
}

.input-jfl-light {
    border: 1px solid var(--jfl-color-neutral);
    border-radius: 3px;
    box-shadow: none;
    min-width: 200px;
    padding: 12px;
    font-size: 1.1rem;
}
.input-jfl-light::placeholder {
  color: #808080;
}

.input-jfl-light:focus {
    border: 1px solid var(--jfl-color-main);
    outline: none;
}

.input-jfl-light.error {
    border-color: #C91B1B;
}

form div.error-container label.error, 
form div.jfl-error-container .jfl-error {
    padding: 5px;
    margin-top: 15px;
    display: block;
    color: #C91B1B;
    border-radius: 8px;
    text-transform: initial;
    font-weight: bold;
}

/*******************************/
/* Select */
/*******************************/

/** select-jfl */

select.select-jfl { 
    display: inline-block;
    /*min-width: 250px;*/ 
    width: 100%;
    /*max-width: 100%;*/
    /*height: calc(2.25rem + 2px);*/ /* Multiselect */
    height: fit-content;
    padding: .375rem 1.75rem .375rem .75rem;
    line-height: 1.5;
    color: #656E77; /* #495057; */
    vertical-align: middle;
    background: #fff url("../img/arrows/cs-arrow-black.png") no-repeat right .75rem center;
    background-size: auto;
    background-size: 12px auto;
    /*border: 1px solid #ced4da;*/
    border: 1px solid var(--jfl-color-neutral);
    border-radius: .25rem;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.select-jfl:hover {}

select.select-jfl:focus,
select.select-jfl:active {
    border: 1px solid var(--jfl-color-main);
    transition: all .2s ease-in-out;
    box-shadow: none;
}

select.select-jfl.disabled,
select.select-jfl:disabled {
    opacity: 0.6;
}

select.select-jfl.selected {}

select.select-jfl option {
    color: black;
}

/* Select using bootstrap-select lib */

/*.bootstrap-select > .dropdown-toggle,*/ 
.bootstrap-select.bs-select-picker button.dropdown-toggle
{
    width: 100%;
    padding: .375rem 1.75rem .375rem .75rem;
    line-height: 1.5;
    color: #656E77; /* #495057; */
    vertical-align: middle;
    background: #fff url("../img/arrows/cs-arrow-black.png") no-repeat right .75rem center;
    background-size: auto;
    background-size: 12px auto;
    /*border: 1px solid transparent;*/
    border: 1px solid var(--jfl-color-neutral);
    border-radius: .25rem;
    /*box-shadow: 0 0 16px -6px rgba(0,0,0,0.25);*/
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: default;
    transition: all .2s ease-in-out;
}
.bootstrap-select > .dropdown-toggle,
.bootstrap-select > .dropdown-toggle:hover,
.bootstrap-select > .dropdown-toggle:active,
.bootstrap-select > .dropdown-toggle:focus,
.bootstrap-select.bs-select-picker .btn-light:not(:disabled):not(.disabled).active, 
.bootstrap-select.bs-select-picker .btn-light:not(:disabled):not(.disabled):active
{
    background-color: #ffffff;
    /*border: 1px solid transparent;*/
    border: 1px solid var(--jfl-color-neutral);
    cursor: default;
    transition: all .2s ease-in-out;
}

.bootstrap-select.bs-select-picker.show > .btn-light.dropdown-toggle {
    border: 1px solid var(--jfl-color-main);
    transition: all .2s ease-in-out;
}

.bootstrap-select.bs-select-picker button.dropdown-toggle::after {
    display: none;
}

.bs-select-picker.bootstrap-select > .dropdown-toggle.bs-placeholder, 
.bs-select-picker.bootstrap-select > .dropdown-toggle.bs-placeholder:active, 
.bs-select-picker.bootstrap-select > .dropdown-toggle.bs-placeholder:focus, 
.bs-select-picker.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
    color: #656E77; /* #495057; */
}

.bs-ok-default.check-mark {
    color: var(--jfl-color-main);
}

.bootstrap-select.bs-select-picker.style2 button.dropdown-toggle
{
    font-size:1.1rem; 
    color: black; 
    padding: 11px 15px;
}

/* The Checkbox */

.checkbox-jfl {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 0px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-jfl input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox-jfl-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
}

/* On mouse-over, add a grey background color */
.checkbox-jfl:hover input ~ .checkbox-jfl-checkmark {
  background-color: #fff;
  border-color: var(--jfl-color-main);
}

/* When the checkbox is checked, add a blue background */
.checkbox-jfl input:checked ~ .checkbox-jfl-checkmark {
  background-color: var(--jfl-color-main);
  border: 0 none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-jfl-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-jfl input:checked ~ .checkbox-jfl-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-jfl .checkbox-jfl-checkmark:after {
  left: 9px;
  top: 5px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* The Radio */

.radio-jfl {
}

.radio-jfl label:not(.error) {
    display: inline-block;
    /*min-width: 200px;*/
    margin: 0 15px;
    overflow: auto;
    /*box-shadow: 0px 0px 36px -5px rgba(8,65,176,0.2);*/
    background-color: transparent;
    border-radius: 6px;
    cursor: pointer;
    /*border: 1px solid var(--jfl-color-neutral);*/
}

.radio-jfl label:not(.error) input {
    position: absolute;
    top: -20px;
    visibility: hidden;
}

.radio-jfl label:not(.error) span {
    display: block;
    text-align: center;
    font-size: 1rem;
    font-weight: normal;
    padding: 10px 20px;
    background-color: rgba(255,255,255,1);
    border: 1px solid var(--jfl-color-neutral);
    border-radius: 6px;
    color: #333333;
    text-decoration: none;
    transition: all 200ms ease-in-out;
    vertical-align: bottom;
}

.radio-jfl input:checked + span {
    background-color: var(--jfl-color-main);
    color: #FFFFFF;
    border: 1px solid transparent;
}

.form-control:hover,
.form-control:active,
.form-control:focus {
    box-shadow: none;
}

/*******************
   Typography
**/

.jfh-slogan {
    font-size: 1.9rem; 
    line-height: 1.4;
    font-weight: 800; 
    color: var(--jfc-color-black);
}

.jfh-slogan.white {
    color: white;
}

/**-------------------------
    Sections 
--------------------------*/

/***************************/
/** Sections with Illustration */
/***************************/

.illustration-mobile-label span, 
.illustration-label span {
    font-size: 0.8rem;
    color: #aaa;
}

.illustration-mobile-label span {
    display: inline-block; 
    padding: 0 10%;
}

#section-illustration-hero-search {
    background-color: #FAFAFA;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
@media ( max-width: 1024px ){
    #section-illustration-hero-search {
        background-size: contain;
        background-position: center bottom;
    }
}
@media ( max-width: 800px ){
}
@media ( max-width: 769px ){
    .illustration-mobile-label span, 
    .illustration-label span {
        font-size: 0.7rem;
    }
}

/***************************/
/** Section Hero */
/***************************/

#section-hero {
    position: relative;
    padding: 90px 0;
    background-color: #FAFAFA;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
#section-hero h1.resp-text {
    font-size: 2.5rem;
}
#section-hero p.resp-text {
    font-size: 1.25rem;
    line-height: 1.5;
}

@media ( max-width: 1200px ){
    #section-hero h1.resp-text {
        font-size: 3rem;    
    }
    #section-hero p.resp-text {
        font-size: 1.35rem;   
    }
}
@media ( max-width: 1024px ){
    #section-hero {
        background-size: contain;
        background-position: center bottom;
    }
    #section-hero h1.resp-text {
        font-size: 2.5rem;    
    }
    #section-hero p.resp-text {
        font-size: 1rem; 
    }
}
@media ( max-width: 800px ){
}
@media ( max-width: 769px ){
}

/***************************/
/** Section Search Job */
/***************************/

#section-search {
}

#section-search .search-job-container {
    background-color: transparent;
    padding: 0;
}

@media ( max-width: 769px ){
    #section-search {
        padding: 30px 10px 30px 0;
    }
    
    #section-search .search-job-container {
        background-color: transparent;
        padding: 0;
    }
}

.search-job-block {
    position: relative;
    border: 0 none;
}

.search-job-icon {
    position: absolute;
    left: 25px;
    top: 5px;
    color: #888;
    font-size: 1rem;
    line-height: 3;
}

.search-job-field {
    border: 0 none;
    background-color: white;
    border: 1px solid var(--jfl-color-neutral);
    border-radius: 36px;
    padding: 15px 10px;
    padding-left: 55px;
    width: 100%;
    box-shadow: none;
    outline: none;
}

.search-job-field:hover {}

.search-job-field:focus,
.search-job-field:active
{
    border: 1px solid var(--jfl-color-main);
    box-shadow: none;
    outline: none;
}

.search-job-button,
.search-job-button:active,
.search-job-button:focus {
    position: absolute;
    right: 0;
    top: 0;
    height: 56px;
    border: 0 none;
    background-color: var(--jfl-color-main);
    border-radius: 0 36px 36px 0;
    padding: 11px 20px 12px;
    color: black;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.search-job-button:hover {
    text-decoration: none;
    color: black;
    background-color: var(--jfl-color-main-hover);
}

.search-job-button:active,
.search-job-button:focus {
    color: white;
}

@media ( max-width: 564px ){
    .search-job-button, .search-job-button:active, .search-job-button:focus {
        padding: 11px 10px 12px;
    }
}

#suggestions-container {
    z-index: 9999;
    padding: 15px 0;
    margin: 0;
    left: 0px;
    top: 57px;
    display: block;
    position: absolute;
    width: 100%;
    min-height: 300px;
    max-height: 500px;
    height: 33vh;
    overflow: hidden;
    overflow-y: scroll;
    /*height: max-content;*/
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 0 16px -6px rgba(0,0,0,0.5);
}

/** Filter Tags */

.filter-tag {
    display: inline-block;
    margin: 5px;
    padding: 5px 10px;
    border-radius: 6px;
    background-color: #eee;
    font-size: 0.8rem;
}
.filter-tag-name {
    font-weight: normal;
    color: #aaa;
}
.filter-tag-label {
    font-weight: normal;
    color: var(--jfl-color-main);
}

/** Modal Full Width - DEPRECATED */

/*
.modal-dialog-full-width {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
}

.modal-content-full-width  {
    height: auto !important;
    min-height: 100% !important;
    border-radius: 0 !important;
    background-color: #f5f5f5 !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.modal-header-full-width  {
    border: 0 none;
    background-color: #fcfcfc;
}

.modal-footer-full-width  {
    border-top: 1px solid #9ea2a2 !important;
}
*/

/** Search Job Results */

/*.search-job-results {
    padding: 10px 0;
}*/

.result-department {
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #eaeaea;
}

.department-title {
    
}

.department-title-link {
    font-weight: 400;
    /*color: var(--jfl-color-main);*/
    color: #555;
}
.result-department:hover a,
.department-title:hover a, 
.department-title-link:hover {
    color: var(--jfl-color-main-hover);
    text-decoration: underline;
}

.department-title-text,
.department-title-text:hover {
    font-weight: normal;
    color: #aaa;
}

.department-count {
    position: absolute;
    top: 10px;
    right: 15px;
}

@media ( max-width: 564px ){
    .department-count {
        position: static;
    }
}

.department-count-text {
    font-size: 0.9rem;
    color: #888;
}

.department-count-text.empty {
    color: #aaa;
}

.department-meta {
    
}

.department-meta-text {
    color: #aaa;
    font-size: .9rem;
}

/*****************************/
/** Section Search Candidate */
/*****************************/

.search-candidate-container {
    position: relative;
    width: 100%
}

.search-candidate-field {
    width: 100%; 
    border: 1px solid var(--jfl-color-neutral);
    background-color: white;
    border-radius: 36px;
    padding: 20px 10px;
    padding-left: 55px;
    padding-right: 55px;
    box-shadow: none;
    outline: none;
    transition: .2s all ease-in-out;
}
.search-candidate-field:hover {
    
}
.search-candidate-field:focus,
.search-candidate-field:active
{
    border-color: var(--jfl-color-main);
    box-shadow: none;
    outline: none;
    transition: .2s all ease-in-out;
}

.search-candidate-icon {
    position: absolute;
    top: 10px;
    left: 25px;
    color: var(--jfl-color-main);
    font-size: 1rem;
    line-height: 3;
}

.reset-candidate-icon {
    position: absolute;
    top: 4px;
    right: 10px;
    display: block;
    padding: 0 15px 0 10px;
    color: #888;
    font-size: 1.25rem;
    line-height: 3;
}

#section-search-candidate .input-jfl-light,
#section-search-candidate .input-jfl-light:hover {
    padding: 6px 10px; 
    width: 100%;
    border-color: var(--jfl-color-neutral);
    font-size: 1rem;
    transition: .2s all ease-in-out;
}

#section-search-candidate .input-jfl-light:active,
#section-search-candidate .input-jfl-light:focus {
    border-color: var(--jfl-color-main);
    transition: .2s all ease-in-out;
}

.search-candidate-button-container {
    text-align: right;
}

@media ( max-width: 769px ){
    .search-candidate-button-container {
        text-align: center;
    }
}

.search-candidate-button,
.search-candidate-button:active,
.search-candidate-button:focus {
    /* position: absolute;
    right: 0;
    top: 0; */
    border: 0 none;
    background-color: var(--jfl-color-main);
    border-radius: 36px;
    padding: 14px 60px 14px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.search-candidate-button:hover {
    text-decoration: none;
    color: white;
    background-color: var(--jfl-color-main-hover);
}

.search-candidate-button.disabled,
.search-candidate-button:disabled,
.search-candidate-button.disabled:hover,
.search-candidate-button:disabled:hover {
    background-color: var(--jfl-color-main);
    opacity: 0.5;
}

.filter-dropdown {
    width: 100%;
    padding: 5px 10px 0px;
    border-color: var(--jfl-color-neutral);
    background-color: white;
    font-size: 1rem;
    color: #656E77; /* #495057; */
    text-align: left;
	background: #fff url("../img/arrows/cs-arrow-black.png") no-repeat right .75rem center;
	background-size: auto;
	background-size: 12px auto;
}

.filter-dropdown.dropdown-toggle::after
{
  display: none;
}

.filter-dropdown span {
    overflow: hidden;
    width: 90%;
    display: inline-block;
    padding: 0;
    margin: 0;
}

/** Google Maps Autocomplete */
.pac-item {
    font-family: var(--jf-font-family-primary);
}
.pac-item-query {
    font-family: var(--jf-font-family-primary);
}

/**
Candidates Progress Animation
*/

#candidate-progress-animation {
    width: 100%;
    border-radius: 16px;
    background-color: #ddd;
}

#candidate-progress-animation-bar {
    width: 1%;
    height: 10px;
    border-radius: 16px;
    background-color: var(--jfl-color-main);
}

/**
Candidates and Preview results
*/

.results-candidates-objective {
    direction: ltr;
}
.results-candidates-objective-text {
    direction: ltr;
}
.rtl .results-candidates-objective {
    direction: rtl;
    text-align: right;
}
.rtl .results-candidates-objective-text {
    direction: rtl;
    text-align: right;
}

.results-candidates-skills {
    direction: ltr;
}
.rtl .results-candidates-skills {
    direction: rtl;
    text-align: right;
}

.results-candidates-keyresults {
    direction: ltr;
    text-indent: -9px;
}
.rtl .results-candidates-keyresults {
    direction: rtl;
    text-align: right;
    text-indent: -18px;
}

.candidate-preview-block ul {
    list-style: none;
    margin: 0;
}

.candidate-preview-block ul li {
    margin-top: 5px;
}

.candidate-preview-block ul li::before {
    content: "\2022";  
    color: var(--jfl-color-main); 
    font-weight: bold;
    font-size: 2rem;
    line-height: 1rem;
    display: inline-block; 
    width: 1.5rem;
    margin-left: -1rem;
    margin-top: 4px;
    vertical-align: top;
}

.candidate-block {
    background-color: white; 
    border: 1px solid var(--jfl-color-neutral); 
    border-radius: 8px;
    transition: all 0.2s ease-in-out; 
}

.candidate-block:hover {
    border: 1px solid var(--jfl-color-main);
    transition: all 0.2s ease-in-out; 
}

.rtl .candidate-block {
    text-align: right;
}

.cta-sign-up {
    background-color: white;
    padding: 15px 25px;
    font-size: 1.15rem;
}

/***************************/
/** Section Jobs Catalogue */
/***************************/

#section-jobs-catalogue {
    padding: 60px 0 60px 0;
    background-color: #f0f0f0;
}

.catalogue {
    padding: 0;
    /*padding-bottom: 30px;*/ /* DEPRECATED */
}

.catalogue-title {
    position: relative;
    padding: 10px 0 0 0;
}

.catalogue-title-text {
    font-weight: bold;
    font-size: 1.35rem;
}

.catalogue-all {
    position: absolute;
    right: 15px;
    top: 12px;
    color: var(--jfl-color-main);
    font-size: 1.25rem;
}

.catalogue-all:hover {
    color: var(--jfl-color-main-hover);
}

.catalogue-job {
    display: block;
    position: relative;
    margin-top: 30px;
    /*padding: 15px;*/
    padding: 30px;
    background-color: white;
    border-radius: 6px;
    border-radius: 36px;
    border: 0 none;
    width: 100%;
    /*box-shadow: 0 0 16px -6px rgba(0,0,0,0.25);*/
    box-shadow: none;
    font-size: 0.9rem;
    height: 245px;
    /*cursor: pointer;*/
}

.dummy {
    margin-top: 60px;
}
.dummy .dummy-card {
    box-shadow: none;
    opacity: 0.6;
    margin-top: 15px;
}

.catalogue-job-title {
    margin-top: 25px;
    /*min-height: 80px;*/
}

.catalogue-job-title a {
    color: #000;
}

.catalogue-job-title-text,
.catalogue-job-title-text:hover {
    font-weight: bold;
    font-size: 1.15rem;
    line-height: 1;
    text-decoration: none;
}

.catalogue-company-name-text,
.catalogue-company-name-text:hover {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
}

.catalogue-job-location {
    margin: 5px 0;
}

.catalogue-job-location-text {
    color: #616263;
    font-size: 1rem;
}

.catalogue-job-details {
    margin-top: 5px;
}

.catalogue-job-details .job-meta {
    color: #555;
    font-size: 1rem;
}

.catalogue-job-employment-text {
    color: initial;
    display: inline-block;
    /*width: 32%;*/
    text-align: center;
}
.catalogue-job-experience-text {
    color: #555;
    display: inline-block;
    /*width: 31%;*/
    text-align: center;
}
.catalogue-job-isremote-text {
    color: #eee;
    display: inline-block;
    /*width: 32%;*/
    text-align: center;
}
.catalogue-job-isremote-text.remote {
    color: var(--jfl-color-main);
}

.not_applicable .catalogue-job-experience-text {
    color: #eee;
}

.catalogue-job-department {
    /*position: absolute;*/
    /*top: 15px;*/
    /*left: 15px;*/
    /*right: 15px;*/
}

.catalogue-job-department-text {
    color: var(--jfl-color-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

@media ( max-width: 1200px ) and ( min-width: 768px ){

   .catalogue-job-department-text {
        font-size: 0.8rem;
    }
}

.catalogue-job-date {
    position: absolute;
    /*bottom: 37px;*/
    bottom: 15px;
    left: 15px;
}

.catalogue-job-date-text,
.catalogue-job-date-text:hover {
    color: #888;
    font-size: .9rem;
}

.catalogue-bookmark {
    position: absolute;
    top: 15px;
    right: 25px;
}
.catalogue-bookmark a {
    color : #555;
    display: inline-block;
    /*padding: 8px 10px 2px;*/
    width: 44px;
    height: 44px;
    padding-top: 6px;
    text-align: center;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    text-decoration: none;
    font-size: 20px;
}
.catalogue-bookmark a:hover {
    /*color : var(--jfl-color-primary);*/
    color: #888;
}
.catalogue-bookmark a.bookmarked {
    color : var(--jfl-color-main);
}


.data-notfound {
    color: #aaa;
}

/***************************/
/** Section Job Alert */
/***************************/

#section-job-alert {
    /*background-color: var(--jfl-color-main-fade);*/
    background-color: var(--jfl-color-block-background);
    background-size: 25%;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 60px 15px;
    color: var(--jfl-color-black);
}

#section-job-alert h1.resp-text {
    margin-bottom: 0;
    margin-top: 8px;
    line-height: 1.2;
}

#section-job-alert .resp-text {
    font-size: 1.5rem;
    font-weight: bold;
}

@media ( max-width: 1200px ){

    #section-job-alert .resp-text {
        font-size: 1.5rem;
    }
}
@media ( max-width: 1024px ){

    #section-job-alert .resp-text {
        font-size: 1.4rem;
    }
}
@media ( max-width: 768px ){
    #section-job-alert {
        background-size: 70%;
        background-position: bottom center;
    }
    #section-job-alert .resp-text {
        font-size: 1.4rem;
    }
}

/***************************/
/** Section How Is Works */
/***************************/

#section-how-it-works {
    position: relative;
    padding: 90px 0;
    /*background-color: #EDEDED;*/
    background-color: white;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}

@media ( max-width: 769px ){
    #section-how-it-works {
        background-size: cover;
        background-position: center bottom;
    }
}

#section-how-it-works .badge {
    display: inline-block;
    border-radius: 50%;
    background-color: var(--jfl-color-main);
    color: white;
    width: 30px;
    height: 30px;
    padding: 6px 0;
    text-align: center;
    text-shadow: none;
    font-size: 1.1rem;
}

/***************************/
/** Section Mission Story */
/***************************/

#section-mission-story {
    position: relative;
    padding: 60px 0;
    /*background-color: white;*/
    background-color: #EDEDED;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}

@media ( max-width: 769px ){
    #section-mission-story {
        background-size: contain;
        background-position: center bottom;
    }
}

/** Page I'm Hiring */
/***************************/
/** Section Register Company Profile - I'm Hiring */
/***************************/
#section-register-user-form {
    padding: 45px 0;
}

/** ------------------------ */
/** Stories */
/** ------------------------ */

.story-card {
    display: block;
    position: relative;
    width: auto;
    padding: 0;
    margin-top: 5px;
    margin-bottom: 60px;
    background-color: white;
    border-radius: 6px;
    border: 0 none;
    box-shadow: 0 0 16px -6px rgba(0,0,0,0.25);
    font-size: 1rem;
    /*min-height: 410px;*/
}
.story-card.odd {
    margin-left: 60px;
}
.story-card.even {
    margin-right: 60px;
}

.story-card-picture {
    height: 150px;
    background-size: cover; 
    background-repeat:no-repeat; 
    background-position: center center;
    border-radius: 6px 6px 0 0;
}

.story-card-content {
    padding: 15px 30px;
}

.story-card-content .title {
    padding: 15px 0 0 0;
    font-size: 1.5rem;
}
.story-card-content .description {
    min-height: 100px;
    padding: 15px 0;
    font-size: 1rem;
    font-style: italic;
}
.story-card-content .link {
    padding: 15px 0;
    text-align: right;
    font-size: 1.2rem;
}

#stories-carousel .carousel-control-next, 
#stories-carousel .carousel-control-prev {
    width: 5%;
    /*filter: invert(100%);*/
}

@media ( max-width : 767px ) {
    .story-card.odd {
        margin-left: 40px;
        margin-right: 40px;
    }
    .story-card.even {
        margin-left: 40px;
        margin-right: 40px;
    }
    .story-card-content {
        padding: 30px 15px;
    }
    .story-card-content .description {
        min-height: 150px;
    }
    #stories-carousel .carousel-control-next, 
    #stories-carousel .carousel-control-prev {
        width: 10%;
    }
} 

/** Footer social */

a.social-link {
    font-size: 1.2rem;
    display: inline-block;
    margin: 8px;
    padding: 8px;
    height: 46px;
    width: 46px;
    color: white;
    /*border: 1px solid white;*/
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    opacity: 0.5;
    transition: all 0.2s ease-in-out; 
}

a.social-link:hover {
    color: white;
    /*border: 1px solid var(--jfl-color-main);*/
    background-color: var(--jfl-color-main);
    opacity: 1;
}

/***************************/
/** Overrides */
/***************************/

/** Testimonials - Strong Testimonials Plugin */

.testimonials-srapi .strong-view.nav-position-outside .wpmslider-controls {
    margin-top: 15px;
}

.testimonials-srapi .wpmslider-viewport {
    /*height: auto !important;*/
    /*overflow: visible !important;*/
}

.testimonials-srapi .wpmslider-clone .testimonial-inner {
    /*opacity: 0.3;*/
}

.testimonials-srapi .testimonial {
    padding: 15px;
}

.testimonials-srapi .testimonial .testimonial-inner {
    position: relative;
    background-color: white;
    box-shadow: 0px 0px 24px -8px rgba(0,0,0,0.25);
    border-radius: 6px;
    padding: 15px 15px 30px 15px;
    min-height: 220px;
}

.testimonials-srapi .testimonial .testimonial-inner .testimonial-heading {
    display: none;
}

.testimonials-srapi .testimonial .testimonial-inner .testimonial-image {
    display: inline-block;
}

.testimonials-srapi .testimonial .testimonial-inner .maybe-clear {
    display: none;
}

.testimonials-srapi .testimonial .testimonial-inner .testimonial-image {
    position: absolute;
    top: 30px;
    width: 100%;
}

.testimonials-srapi .testimonial .testimonial-inner .testimonial-image img {
    border-radius: 50%;
    /*position: absolute;*/
    /*top: 30px;*/
    max-height: 100px;
    width: auto;
}

.testimonials-srapi .testimonial .testimonial-inner .testimonial-content p {
    font-family: Georgia, serif;
    display: inline-block;
    margin-left: 125px;
    padding: 15px;
    font-style: italic;
    margin-bottom: 0;
}

.testimonials-srapi .testimonial .testimonial-inner .testimonial-name {
    margin-left: 125px;
    padding: 0 15px;
    font-size: 0.9rem;
    color: #555;
}

@media ( max-width : 520px ) {
    .testimonials-srapi .testimonial .testimonial-inner .testimonial-image {
        position: static;
        text-align: center;
    }
    .testimonials-srapi .testimonial .testimonial-inner .testimonial-content p {
        display: block;
        margin-left: 0;
    }
    .testimonials-srapi .testimonial .testimonial-inner .testimonial-name {
        margin-left: 0;
    }
}

.testimonials-srapi .wpmslider-prev,
.testimonials-srapi .wpmslider-next {
    top: calc( 50% - 40px ) !important;
}

.testimonials-srapi .wpmslider-prev::before,
.testimonials-srapi .wpmslider-next::before {
    /*background-color: #999 !important;*/
}

.testimonials-srapi .wpmslider-pager-item {
    
}

.testimonials-srapi .wpmslider-pager-item .wpmslider-pager-link::before {
    background: rgba(0,0,0,0.15) !important;
    width: 12px !important;
    height: 12px !important;
    margin-left: 10px;
}

.testimonials-srapi .wpmslider-pager-item .wpmslider-pager-link.active::before {
    background: var(--jfl-color-main) !important;
}

/** Fixes */

/** Cookie Notice Plugin */

#cookie-notice {
    border-top: 1px solid #ccc;
}
#cookie-notice.cookie-notice-hidden {
    border: 0 none;
}

.btn-cn-fix {
    padding: 10px 20px !important;
}
