.border-careers {
    background: #ebe7e3;
    margin-top: 0;
    position: relative;
}

.border-careers .title-careers {
    padding-top: 100px;
    text-align: center;
    padding-bottom: 33px;
}

.search-careers {
    position: relative;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    padding: 80px 31px;
    z-index: 2;
}

.actions.content-mobile {
    display: none;
}

button.btn.close.content-mobile {
    display: none;
}

.search-careers form .fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}

.search-careers form .fields .grounp-filter {
    display: flex;
    flex-direction: row;
    width: 80%;
}

.search-careers form .fields .grounp-filter .field {
    width: 50%;
}

.search-careers form .field {
    padding: 0 8px;
    margin: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: auto;
}

.search-careers form .field .title-field {
    margin-bottom: 10px;
}

.search-careers form .corporate_or_hotel {
    max-width: 28%;
    padding-right: 2%;
    width: 100%;
}

.search-careers form .location {
    /* max-width: 28%; */
    padding-right: 2%;
    width: 100%;
}

.search-careers form .search {
    /* max-width: 28%; */
    padding-right: 2%;
    width: 100%;
}

.search-careers form input[type="text"] {
    height: 40px;
    border: 1px solid #d1d1d1;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
    font-weight: 500;
    line-height: 19px;
    padding: 0 10px;
    font-size: 18px;
}

.field select {
    height: 40px;
    color: #747575;
    background-size: 16px;
    font-weight: 500;
    padding: 0 10px;
    background: transparent;
    border: 1px solid #d1d1d1;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.field select option {
    color: #000;
    /* font-family: Barlow; */
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0.3px;
}

.search-careers form .submit {
    max-width: 16%;
    letter-spacing: 2px;
    width: 100%;
}

.search-careers form .submit .btn {
    background: #3d3d3d;
    color: #fff;
    max-width: 100%;
    padding: 0 10px;
    height: 40px;
    border: 1px solid;
    font-family: "SF Pro Display";
}


button.btn.button.submit:hover {
    background: #fff;
    color: #3d3d3d;
}

.list-career {
    padding: 47px 0 0;
    margin: auto;
}

/* content */
.heading-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #d1d1d1;
    margin: 0 auto;
    padding-top: 21px;
    padding-bottom: 21px;
}

.heading-table p {
    width: calc(100% / 3);
}

.content-table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #d1d1d1;
    padding-top: 17px;
    padding-bottom: 17px;
}

.content-table:last-child {
    border-bottom: 1px solid #d1d1d1;
}

.content-table p {
    width: calc(100% / 3);
    padding-right: 20px;
}

.content-table .name-career a {
    color: #183b56;
    text-transform: uppercase;
}

.content-table .hotel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.content-table .department {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.content-table .department span {
    margin-bottom: 10px;
}

.content-table .hotel span {
    margin-bottom: 10px;
}

.search-careers .message-no-post {
    margin-top: 50px;
}

.actions.content-mobile .show-search {
    border: 1px solid #FFCD06;
}

@media(max-width:767.98px) {
    .actions.content-mobile {
        display: block;
    }

    .search-careers form.show-popup button.btn.close.content-mobile {
        opacity: 1;
        pointer-events: auto;
        display: block;
    }

    .search-careers form {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        /* opacity: 0; */
        visibility: hidden;
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        padding: 191px 17px 87px;
        overflow: hidden;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .search-careers form.show-popup {
        opacity: 1;
        visibility: visible;
        -ms-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
    }

    .search-careers button.btn.close.content-mobile {
        background: transparent;
        font-size: 0;
        position: fixed;
        top: 14px;
        right: 19px;
        z-index: 9;
        line-height: 0;
        cursor: pointer;
        opacity: 0;
        pointer-events: none;
        padding: 0;
        border: 0;
    }

    .search-careers form.show-popup button.btn.close.content-mobile {
        opacity: 1;
        pointer-events: auto;
    }

    .actions.content-mobile {
        padding: 0 17px;
        text-align: center;
    }

    .search-careers form .field {
        max-width: 100%;
        padding: 0;
        margin-bottom: 15px;
    }

    .search-careers form .fields .grounp-filter {
        flex-direction: column;
        width: 100%;
    }

    .search-careers form .fields .grounp-filter .field {
        width: 100%;
    }

    .search-careers form .fields {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .heading-table {
        display: none;
    }

    .content-table {
        display: block;
        padding-top: 22px;
        padding-bottom: 12px;
    }

    .content-table p {
        padding-right: 0;
        width: 100%;
        color: #747575;
    }


    .content-table .department span,
    .content-table .hotel span {
        margin: 0;
    }
}

/* careers detail */
.single-careers .post-career .title-post-career-detail {
    /* padding-top: 70px; */
    padding-bottom: 60px;
    margin: 30px 0 20px;
    text-align: center;
    text-transform: uppercase;
}

.post-career .post-career-content {
    padding-bottom: 100px;
}

.post-career .post-career-content .content-info-job {
    width: 100%;
    padding-bottom: 40px;
}

.post-career .content-info-job .specification {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #d1d1d1;
}

.post-career .content-info-job .specification:last-child {
    border-bottom: 1px solid #d1d1d1;
}

.post-career .content-info-job .specification div {
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.post-career .content-info-job .specification .title {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post-career .content-info-job .specification .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-decoration: none;
}

.post-career .post-career-content .entry-content ul {
    list-style: none;
}

.post-career .post-career-content .entry-content ul li {
    position: relative;
    margin: 0;
    margin-bottom: 5px;
    padding-left: 15px;
}

.post-career .post-career-content .entry-content ul li:after {
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #000;
    content: "";
}

.post-career .post-career-content .job-share-block {
    margin-top: 30px;
}

.post-career .job-share-block .btn-share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.post-career .job-share-block .btn-share .grp-btn-share {
    margin-left: 25px;
}

/* .post-career .job-share-block .btn-share .grp-btn-share a {
    cursor: pointer;
} */

.post-career .job-share-block .btn-share .title-share {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto 0;
}

.post-career .form-apply-for-job .title-form {
    padding-top: 48px;
    text-align: center;
    padding-bottom: 61px;
    text-transform: uppercase;
    border-top: 0.2px solid rgba(0, 0, 0, 0.2);
}

.post-career .form-apply-for-job .content-form form .row-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.post-career .form-apply-for-job .content-form form .row-form label {
    width: 47%;
    padding-bottom: 10px;
}

.post-career .form-apply-for-job .content-form form .messege-form label {
    width: 100%;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
    padding: 0.5rem 1.8rem;
}

.post-career .form-apply-for-job .content-form form .row-form label>span,
.post-career .form-apply-for-job .content-form form .messege-form label>span {
    margin-top: 10px;
    display: block;
}

.post-career .form-apply-for-job .content-form .wpcf7 input[type="file"] {
    position: relative;
    padding: 5px 15px;
    padding-top: 8px;
    height: 40px;
    outline: none;
    border: 1px solid #d1d1d1;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    background: #fff;
    -webkit-filter: none;
    filter: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    color: #747575;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-right: 50px;
    padding-left: 0;
    color: transparent;
}

.post-career .form-apply-for-job .content-form form .check-form .wpcf7-list-item {
    margin: 0;
}

.post-career .form-apply-for-job .content-form form .check-form .wpcf7-list-item input[type="checkbox"] {
    margin-right: 10px;
}

.post-career .form-apply-for-job .content-form form .check-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 30px;
    padding-top: 15px;
}

.post-career .form-apply-for-job .content-form form .btn-submit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.post-career .form-apply-for-job .content-form form .btn-submit .wpcf7-spinner {
    width: auto;
}

.post-career .form-apply-for-job .content-form form .btn-submit .wpcf7-submit {
    background-color: #0149AB;
    color: #fff;
    text-decoration: none;
    padding: 0 40px;
}

.post-career .form-apply-for-job .content-form form .btn-submit .wpcf7-submit:hover {
    background: #ffcd06;
    color: #183B56;
}

.post-career .form-apply-for-job .content-form .wpcf7 input[type="file"]::-webkit-file-upload-button {
    display: none;
}

.post-career .form-apply-for-job .content-form .wpcf7 input[type="file"]:before {
    content: '';
    display: inline-block;
    background-image: url(../images/upload-file.svg);
    width: 21px;
    height: 21px;
    position: absolute;
    right: 0;
    padding-right: 32px;
    background-repeat: no-repeat;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.post-career .form-apply-for-job .content-form form .check-form .wpcf7-list-item input[type="checkbox"]:before {
    left: -0.55px;
    top: -0.5px;
}

@media (max-width:1024px) {
    .single.single-careers #site-content .container {
        padding-top: 2rem;
    }
}

@media (max-width:767.98px) {
    .single-careers .post-career .title-post-career-detail {
        margin: 0;
    }

    .single.single-careers #site-content .container {
        padding-top: 0;
    }

    .post-career .content-info-job .specification,
    .post-career .content-info-job .specification:last-child {
        border: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 10px;
    }

    .post-career .content-info-job .specification .title {
        width: 100%;
        color: #3d3d3d;
        font-size: 18px;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 1px;
        padding: 0;
    }

    .post-career .content-info-job .specification .content {
        width: 100%;
        color: #747575;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        border: unset;
    }

    .post-career .post-career-content .entry-content ul li:after {
        top: 7px;
        width: 4px;
        height: 4px;
    }

    .post-career .post-career-content .entry-content ul li {
        padding-left: 10px;
    }

    .post-career .job-share-block .btn-share {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .post-career .form-apply-for-job .content-form form .row-form label {
        width: 100%;
        /* padding-bottom: 0; */
    }

    .post-career .form-apply-for-job .content-form form .row-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        display: block;
    }

    .post-career .form-apply-for-job .content-form .wpcf7 input[type="file"] {
        height: 30px;
    }

    .post-career .form-apply-for-job .content-form form .check-form .wpcf7-list-item span {
        line-height: 22px;
    }

    .post-career .post-career-content {
        padding-bottom: 40px;
    }

    .post-career .form-apply-for-job .title-form {
        padding-bottom: 12px;
        padding-top: 36px;
    }
}

/* end careers detail */