.joinus_im {
    position: absolute;
    top: 45% !important;
    transform: translate(0%, -50%);
    right: -20px !important;
    height: 300px;
    max-height: 400px !important;
}

.work_contain {
    width: 1200px;
    margin: auto;
    margin-bottom: 100px;
    margin-top: -100px;
    /* background-color: aqua; */
}
.job_content{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 1200px;
    margin: auto;
    margin-top: -70px;
}

.job_content .job_card{
    max-width: 100%;
    /* height: 200px; */
    padding: 20px;
    border-radius: 20px;
    outline: 3px solid rgb(235, 235, 235);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    font-weight: 300;
    color: rgb(44, 44, 44);
}
.job_content .job_card *{
    cursor: pointer;
}

.job_content .job_card .header{
    font-weight: 600;
}

.job_content .job_card .business{
    margin-bottom: 10px;
}

.job_content .job_card .time_current{
    margin-top: 15px;
}

.job_content .job_card:hover{
    outline: 3px solid #FF7A00;
    cursor: pointer;
    transition: all ease 0.5s;
}

.search_field {
    position: relative;
    border-radius: 10px;
    height: 55px;
    width: 100%;
    margin-bottom: 30px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.search_field .icon {
    position: absolute;
    font-size: 30px;
    left: 20px;
    top: 13px;
    color: rgb(151, 151, 151);
}

.job_search {
    margin-left: 70px;
    width: calc(100% - 80px);
    height: 100%;
    border: none;
    outline: none;
    background-color: rgba(240, 248, 255, 0);
    font-size: 18px;
}

.search_field:focus-within {
    outline: 3px solid #FF7A00;
    transition: all ease 0.1s;

}

.search_field:focus-within .job_search {
    color: #FF7A00;
}

.search_field:focus-within .job_search::placeholder {
    color: #9c9c9c;
}

.row {
    display: flex;
    flex-direction: row;
}

.drowdown_header {
    outline: 3px solid rgb(233, 233, 233);
    height: 40px;
    min-width: 250px;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    margin-right: 15px;
}

.drowdown_header .header {
    position: absolute;
    top: 9px;
    left: 20px;
}

.drowdown_header .icon {
    position: absolute;
    font-size: 25px;
    color: #717171;
    right: 18px;
    top: 8px;
    transition: transform 0.3s ease;
}

.drowdown_header .icon.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.drowdown_list {
    display: none;
    opacity: 0;
    position: absolute;
    outline: 3px solid rgb(233, 233, 233);
    background-color: white;
    min-width: 200px;
    top: 40px;
    border-radius: 20px;
    padding: 10px 10px 5px 10px;
    z-index: 999;
    height: 0px;
    overflow: hidden;
}
.drowdown_list.open {
    display: block !important ;
    opacity: 1;
    overflow: auto;
    height: fit-content;
}

.drowdown_list li {
    list-style-type: none;
}

.drowdown_list li input {
    margin-right: 10px;
}

.checkbox-wrapper-4 * {
    box-sizing: border-box;
}

.checkbox-wrapper-4 .cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
    display: inline-block;
}

.checkbox-wrapper-4 .cbx:not(:last-child) {
    margin-right: 6px;
}

.checkbox-wrapper-4 .cbx:hover {
    background: rgba(0, 119, 255, 0.06);
}

.checkbox-wrapper-4 .cbx span {
    float: left;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    transform: scale(1);
    border: 1px solid #cccfdb;
    transition: all 0.2s ease;
    box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.checkbox-wrapper-4 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-4 .cbx span:last-child {
    padding-left: 8px;
    line-height: 18px;
}

.checkbox-wrapper-4 .cbx:hover span:first-child {
    border-color: #07f;
}

.checkbox-wrapper-4 .inp-cbx {
    position: absolute;
    visibility: hidden;
}

.checkbox-wrapper-4 .inp-cbx:checked+.cbx span:first-child {
    background: #07f;
    border-color: #07f;
    animation: wave-4 0.4s ease;
}

.checkbox-wrapper-4 .inp-cbx:checked+.cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.checkbox-wrapper-4 .inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
}

@-moz-keyframes wave-4 {
    50% {
        transform: scale(0.9);
    }
}

@-webkit-keyframes wave-4 {
    50% {
        transform: scale(0.9);
    }
}

@-o-keyframes wave-4 {
    50% {
        transform: scale(0.9);
    }
}

@keyframes wave-4 {
    50% {
        transform: scale(0.9);
    }
}

@media screen and (max-width: 640px) {
    .checkbox-wrapper-4 .cbx {
        width: 100%;
        display: inline-block;
    }
}

@media only screen and (max-width: 1200px) {
    .work_contain {
        padding: 0 40px 0 40px;
        width: calc(100vw - 80px);
    }
    .job_content{
        position: relative;
        display: flex;
        flex-direction: column;
        width: calc(100vw - 80px);
        margin: auto;
        margin-top: -70px;
    }
}

@media only screen and (max-width: 650px) {
    .search_field {
        /* margin-left: -40px; */
        min-width: calc(100vw - 80px);
    }

    .job_search {
        font-size: 16px;
    }

    .search_field .icon {
        position: absolute;
        font-size: 25px;
        left: 25px;
        top: 17px;
        color: rgb(151, 151, 151);
    }
    .drowdown_header{
        min-width: 48%;
    }
    #dropdownList{
        position: absolute;
        width: calc(100vw - 100px);
    }
    #SalaryList{
        position: absolute;
        left: -109%;
        width: calc(100vw - 100px);

    }
    .drowdown_header .icon{
        display: none;
    }
}

@media only screen and (max-width: 820px) {
    .work_contain {
        margin-top: -50px;
    }
    #dropdowndate{
        display: none;
      }
}




