* {
font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
 
}

.vacancy-hr {
	margin: .875rem 0rem 1.25rem;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
}

.view-documents {
    align-items: center !important;
    display: flex !important;
    cursor: pointer;
}
.job-cards {
    display: flex;
    flex-wrap: wrap;
}
.job-title{
    -webkit-line-clamp: 2;
	font-size: 1.125em;
    font-weight: 600;
    min-height: 3.5rem;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-decription {
    -webkit-line-clamp: 2;
    font-size: .875em;
	min-height: 42px;
	text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    margin-top: .5rem !important;
}

.job-link {
	-webkit-line-clamp: 2;
    min-height: 21px;
    font-size: .875em;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #0d6efd;
}

.job-card {
    width: 30%;
    margin: 10px;
    border: 1px solid #ccc;
    padding: 15px;
}

.p-3 {
    padding: 1rem !important;
    width: 30%;
    margin: 10px;
    border: 1px solid #ccc;
    padding: 15px;
       color: black;
}
.fix-top{
margin-bottom : 4rem;
}
.fix-bottom {
	position: absolute;
    bottom: 15px;
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: white !important;
}

.vacancy-card-container {
    border-radius: 1.25rem;
    box-shadow: 0 0 .75rem #0000000d;
    text-align: start;
}

.position-relative {
    position: relative !important;
}

#documentModal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark background */
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 60%;
    margin: 0 auto;
    position: relative;
}

.modal-body {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

#closeModal {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

#closeModal:hover {
    background-color: #005f8d;
}


.type-job {
    background: linear-gradient(0deg, #1C6492 0%, #1C6492 100%);
}

.vacancy-status {
    top: 0;
    right: 0;
    border-radius: 0rem 1.25rem;
    padding: .5rem .75rem;
}
.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.position-absolute {
    position: absolute !important;
}
#job-card-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

#job-card-popup .popup-content {
    background: #fff;
    padding: 20px;
    margin: 100px auto;
    width: 50%;
    position: relative;
}

#job-card-popup .close {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}