#jobs-container-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out;
}

#jobs-container-wrapper.loaded {
    opacity: 1;
    visibility: visible;
}

.jobs-loading-message {
    text-align: center;
    padding: 40px 0;
}
  
.department-block {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: ". .";
    border-bottom: 1px solid #dddddd;
    margin-bottom: 2em;
}
  
.department-title {
    padding-right: 0.5em;
}
  
.department-block .teamtailor-jobs-widget {
    margin-bottom: 1em;
}
  
.teamtailor-jobs__job-info {
    display: none;
}
  
@media (max-width: 768px) {
    .department-block {
        display: block;
    }
    .department-title {
        padding-right: 0;
    }
}