.job-detail-modal .modal-dialog, .job-form .modal-dialog{
    max-width: 750px;
}
.job-detail-modal .modal-body{
    padding: 12px 0;
}
.job-detail-modal .modal-content{
    border-radius: 16px;
    margin: 24px 0;  
    padding: 0;
}
.job-detail-header {
    padding: 32px;
    border-bottom: 1px solid #C1C6D6;
    position: sticky;
    top: 0;
    background: #fff;
}
.content {
    display: flex;
    gap: 4px;
    flex-direction: column;
}
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
	flex-wrap:wrap;
	gap:8px;
}
.what-we-need p {
    padding: 4px 12px;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
}
.job-description {
    height: 600px;
    overflow-y: scroll;
    padding: 32px;
}
.job-detail-header h3, .job-form h3{
    font-size: 18px;
    line-height: 26px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0;
}
button.btn-close {
    position: absolute;
    right: 24px;
    top: 0;
    opacity: 1;
}
.job-detail-modal p{
    color: #000000c4;
    font-size: 14px;
    line-height: 21px;
}
.job-detail-modal h4{
    font-size: 18px;
    line-height: 26px;
    color: #000;
    font-weight: 600;
}
.job-detail-modal ul{
    display: flex;
    flex-direction: column;
    gap:8px;
    color: #000000c4;
    padding-left: 20px;
    font-size: 14px;
}
a.job-card__button {
    background: #08090A;
   color: #bfbfbf;
}
a.job-card__button:hover {
    background: #08090A;
   color: #bfbfbf;
}
/* job-form */
.job-form .modal-header {
    padding: 0;
    padding-bottom: 24px;
    border: none;
}
.job-form .btn-close{
    position: absolute;
    top: 24px;
    right: 24px;
}
.job-form label {
    color: #000;
    width: 100%;
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 21px;
}
.job-form label span.required{
    color: #BC4141;
}
.job-form input {
    width: 100%;
    font-size: 14px;
    line-height: 21px;
}
.select-arrow span{
    position: relative;
}
.select-arrow span:after{
    content: "";
    position: absolute;
    background-image: url(../../images/career/arrow-down.svg);
    width: 16px;
    height: 16px;
    right: 15px;
    background-repeat: no-repeat;
    top: 15px;
}
.submit-btn{
    border-radius: 8px;
    text-decoration: none;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.5%;
    background: #08090A;
    color: #fff;
}

@media (max-width: 991px) {
    .job-detail-modal .modal-dialog, .job-form .modal-dialog{
        max-width: 550px;
    }
	.header-wrapper {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		gap: 8px;
	}
}
@media (max-width: 575px) {    

      .job-detail-modal .modal-dialog, .job-form .modal-dialog {
        max-width: 90%;
    }
    .job-detail-header, .job-description{
        padding: 16px;
    }
	.form-select.careers__filter {
    width: 100%; 
		text-align:left;
}
}