
.main:not(header.main) {
	width: 100%;
	max-width: 1359px;
	margin: 0 auto;
}
#job-list {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}
.intro-section {
    padding: 90px 0px;
}
.intro-section h1 {
    font-size: 4rem;
}
@media only screen and (max-width: 1023px) {
    .intro-section h1 {
        font-size: 2rem;
    }
}
.intro-section .fake-column {
    width: 60%;
}
@media only screen and (max-width: 768px) {
    .intro-section {
        padding: 45px 0px;
    }
    .intro-section .fake-column {
        width: 100%;
    }
}
@media only screen and (max-width: 1400px) {
    #job-list,
    .job-filter,
    .intro-section {
        padding: 0 1rem;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #job-list  {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #job-list  {
    grid-template-columns: 1fr;
  }
}
.job .breakdance {
	display: inline-block;
	background: none;
}
#job-list .job {
	display: flex;
	border-radius: 12px;
	padding: 1rem;
	overflow: hidden;
  transition: .3s ease-in-out;
  box-shadow: rgb(0 0 0 / 5%) 0px 1px 4px;
  background: linear-gradient(45deg, rgb(222 255 254 / 35%) 0%, rgb(255 255 255 / 53%) 34%)
}

#job-list .job::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, rgb(222 255 254 / 35%) 0%, rgb(255 255 255 / 53%) 34%);
	transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	opacity: 1;
  z-index: -1;
}
/* Active style */
#job-list .job::after {
	content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, rgb(255 255 255 / 35%) 100%, rgb(255 255 255 / 35%) 100%);
	transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	opacity: 0;
  z-index: -1;
}
#job-list .job:hover::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, rgb(222 255 254 / 35%) 0%, rgb(255 255 255 / 53%) 34%);
	opacity: 0;
  z-index: -1;
}
#job-list .job:hover::before {
	content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, rgb(255 255 255 / 35%) 100%, rgb(255 255 255 / 35%) 100%);
	opacity: 1;
  z-index: -1;
}

#job-list .job a {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	color: #000;
	height: 100%;
    word-break: break-word;
}
#job-list .job h4 {
	text-decoration: none;
	color: #0F9E99;
	font-size: 1.5rem;
	margin-top: 0;
	flex: 3;
}
#job-list .job p {
	flex: 2;
}
#job-list .job img {
	width: 100%;
  max-height: 100px;
  object-fit: contain;
  object-position: left;
  margin-bottom: 2rem;
}
#job-list .job button.button-atom {
	background: transparent;
}
#job-list .job button.button-atom::after {
	left: 14px!important;
	top: 16px;
	right: unset!important;
}
#job-list .job button.button-atom::before {
	left: 6px!important;
	right: unset!important;
}
#job-list .job:hover button::before {
	transform: scale(11)!important;
}
#job-list .job:hover .button-atom__text{
	color: #0F9E99!important;
}
#job-list .job .button-atom__text {
	margin-left: 25px;
	margin-right: 0px;
	color: #000;
}



/* Base dropdown */
.custom-dropdown {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    padding: 0;
    background: #fff;
    overflow: hidden;
    font-family: sans-serif;
    font-family: 'DM Sans', sans-serif;
    box-shadow: rgb(0 0 0 / 5%) 0px 1px 4px;
}

/* Toggle bar */
.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    cursor: pointer;
    background: #fff;
    border-radius: 12px;
    transition: background 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown content */
.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    border-top: 1px solid #ddd;
}

.custom-dropdown.open .dropdown-menu {
    max-height: 300px;
    opacity: 1;
    overflow-y: auto;
}

/* Option styles */
.dropdown-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

.dropdown-option:hover {
    background-color: #f5f7f9;
}

.dropdown-option input {
    display: none;
}

.label-text {
    flex-grow: 1;
    font-size: 14px;
}

/* Checkmark icon */
.checkmark-icon svg {
    width: 15px;
    height: 15px;
    fill: #0F9E99;
    opacity: 0;
}

.dropdown-option input:checked ~ .checkmark-icon svg {
    opacity: 1;
}

/* Pills */

.pill {
    background-color: #0F9E99;
    color: white;
    padding: .5rem 1rem;
    font-family: 'DM Sans', sans-serif;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.pill .remove {
    margin-left: 8px;
    cursor: pointer;
    font-weight: bold;
}
.dropdown-search {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    background-color: #f5f7f9;
    font-family: 'DM Sans', sans-serif;
}

.dropdown-search input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.dropdown-search input:focus {
    border-color: #0073aa;
}
.pill-reset-row {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 10px;
    border-top: 1px solid #eee;
    background-color: #f5f7f9;
}

.pill-reset-row.visible {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
    padding: 10px;
}

.selected-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    flex-grow: 1;
    min-width: 0;
    padding: 10px;
}
.reset-button {
    color: #0f172a;
    border: 1px solid #0f172a;
    background: #f1f5f9;
    padding: .5rem 1rem;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    display: none; /* Hidden until category is selected */
    transition: background 0.2s ease;
}
#reset-filter {
  transition: opacity 0.3s ease;
}

#reset-filter[style*="display: none"] {
  opacity: 0;
  pointer-events: none;
}

#total-results {
    display: inline-block;
    background-color: #f1f5f9;
    color: #0f172a;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin: 16px 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeInTotal 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
@media only screen and (max-width: 1400px) {
    #total-results {
        margin: 1rem;
    }
}
@keyframes fadeInTotal {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* When it updates */
#total-results.updated {
    background-color: #0F9E99; /* light green */
    color: #fff;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.page-template-ledige_stillinger .breakdance {
    margin-top: 2rem;
    background: none;
}
#application-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100px;
    background: rgba(255,255,255, 0.5);
    backdrop-filter: blur(12px);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: .3s ease-in-out;
}
#application-modal.open {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    max-height: unset;
}
#application-modal .modal-toggle {
    position: absolute;
    top: 45px;
    right: 45px;
    background: #0f9e99;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#application-modal .modal-toggle svg {
    fill: #fff;
    width: 14px;
    height: 14px;
}
#application-modal .header {
    width: 100%;
    height: 120px;
}
.single #hr-on,
.page-template-ledige_stillinger #hr-on {
    max-width: 90%;
    margin: 0 auto;
    border-radius: 8px;
    display: none;
}
#application-modal.open #hr-on {
    display: block;
}
#load-more {
    display: table;
    margin: 0 auto;
}
#job-agent {
    padding: 90px 0px;
    max-width: 1400px;
    margin: 0 auto;
}
.columns {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}
.column {
    width: 50%;
}
#job-agent img {
    width: 100%;
}