
body, .main-content { background-color: #f9fbfd !important; }

.portal-wrapper { display: flex; padding: 4rem 0rem; padding-top: 2rem; }
.breadcrumb.career-portal { margin-bottom: 1rem; }

.sidebar-wrapper { flex-basis: 25%;  }
.content-wrapper { flex-basis: 75%; padding-left: 2rem; }
.portal-wrapper.no-sidebar .content-wrapper { flex-basis: 100%; padding-right: 0; padding-left: 0;}
.portal-wrapper.no-sidebar .more-filters { display: none !important; }

.filter-wrapper { }
.filters { }

.filters-header { display: flex; align-items: center; justify-content: space-between; }
.filters-header .clear-all { text-decoration: none; font-size: var(--font-size-sm); }
.filters-header .title { font-size: var(--font-size-sm); font-weight: var(--font-weight-semibold); }



.headline-wrapper {}
.headline { }
.headline .sub-title { display: flex; align-items: center; margin-bottom: 0.75rem; font-weight: 400; color: var(--clr-primary); }
.headline .sub-title span { }
.headline .sub-title .icon { margin-right: 0.5rem; }

.headline h1 { font-size: 1.5rem; font-weight: 500; margin: 0; color: var(--color-headline); }

.joboffers-wrapper { }
.joboffers { margin-top: 1.5rem; }



.active-filters-wrapper.empty { display: none; }
.active-filters { display: flex; flex-wrap: wrap; margin-top: 1rem; margin-bottom: -1rem; }
.active-filter { margin-right: 0.5rem; margin-bottom: 0.5rem; }


.actions-wrapper { margin-top: 1rem; }
.actions-wrapper .actions { display: flex; justify-content: space-between; }
.actions-wrapper .sorting { }

.more-filters { display: flex; justify-content: flex-end; margin-top: 0.5rem !important; width: 100%;  }


.data-informations { display: flex; justify-content: center; align-items: center; margin-top: 3rem;  }
.data-informations .finished-wrapper { display: none; }
.data-informations.finished .finished-wrapper { display: block; }

.data-informations .nothing-found-wrapper { display: none; }
.data-informations.nothing-found .nothing-found-wrapper { display: block; width: 100%; }

.actions-wrapper .sorting .form-element-label { display: none; }
.actions-wrapper .search .form-element-label { display: none; }

.show-on-mobile { display: none !important; }

@media(max-width: 1200px){
    .sidebar-wrapper { flex-basis: 30%;  }
    .portal-wrapper:not(.no-sidebar) .content-wrapper { flex-basis: 70%; }
}

@media(max-width: 950px){
    .portal-wrapper { flex-direction: column; padding-top: 2rem; }
    .breadcrumb.career-portal { display: none;}
    .content-wrapper { flex-basis: 100%; padding-left: 0; }
    .headline-wrapper { text-align: center; width: 100%;  }
    .headline h1 { font-size: 2rem; font-weight: var(--font-weight-bold);}
    .actions-wrapper {  margin-top: 2rem; background-color: #FFF; padding: 1rem; border-radius: var(--element-border-radius); border: 1px solid var(--element-border-color); }
    
    .actions-wrapper .actions { flex-direction: column-reverse; }

    .actions-wrapper .search { margin-bottom: 1rem }
    .actions-wrapper .sorting .form-element-label { display: block; }
    .actions-wrapper .search .form-element-label { display: block; }
    .actions-wrapper .sorting #sorting-select, .actions-wrapper .search #search-jobs-input { width: 100%; }

    
    .sidebar-wrapper { transition: all 0s ease; position: fixed; display: none; background-color: #FFF; left: 50%; transform: translateX(-50%); width: 35rem; max-width: 99%; bottom: 0%; z-index: 30; border-top-left-radius: var(--element-border-radius); border-top-right-radius: var(--element-border-radius); box-shadow: 0rem 0rem 0.5rem -0.2rem rgb(0 0 0 / 17%); }
    
    .show-on-mobile { display: inline-flex !important; }

    .mobile-filter-nav-shadow { display: none; transition: all 1s ease; opacity: 0; position: fixed; top: 0; left: 0; height: 100%; width: 100%; background-color: rgba(0,0,0,0.5); z-index: 25; }

    body.filter-sidebar-open { overflow: hidden; max-height: 100vh; }
    body.filter-sidebar-open .mobile-filter-nav-shadow { display: block; }
    body.filter-sidebar-open .sidebar-wrapper { display: block; transition: all .5s ease; }
    body.filter-sidebar-open .main-content .container { pointer-events: none; }

    #sidebar-wrapper > .close-filter-sidebar { display: block !important; margin-left: auto; margin-bottom: 1rem; }
    .filter-wrapper { max-height: 70vh; overflow: auto; padding: 1rem; }
    .filter-mobile-actions { display: flex !important; flex-direction: column; padding: 1rem; padding-bottom: 2rem; border-top: 1px solid var(--element-border-color); }
    .filter-mobile-actions button { width: 100%; margin-bottom: 1rem;}
    .filter-mobile-actions button:last-of-type { margin-bottom: 0; }
    .filter-wrapper .filters-header { display: none; }
}
@media(max-width: 570px){
  .headline h1 { font-size: 1.5rem; }
  .sidebar-wrapper { width: 98%; left: 1%; transform: none; }
}
@media(max-width: 370px){
}




#data-loading-spinner {
    display: none;
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid rgba(var(--color-primary-rgb),1);
    border-radius: 50%;
    border-top-color: #f9fbfd;
    animation: spin 0.75s ease-in-out infinite;
    -webkit-animation: spin 0.75s ease-in-out infinite;
}
  
  @keyframes spin {
    to { -webkit-transform: rotate(360deg); }
  }
  @-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
  }