.job-portal-wrapper{
    max-width:800px;
    margin:40px auto;
}

.job-search-box{
    display:flex;
    margin-bottom:40px;
    position: relative;
    
}

.job-search-box input{
    width:100%;
    height:60px;
    padding:0 20px;
    font-size:18px;
}

.job-search-box button{
    width:70px;
    cursor:pointer;
}
.job-search-box-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 22px;
    color: #333;
    padding: 0;
}
.job-search-filters{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.job-dropdown{
    flex:1;
}

.job-dropdown-btn{
    width:100%;
    height:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
    cursor:pointer;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 35px;
}
.job-dropdown.open .job-dropdown-btn{
    background: #fff;
    color: #000;
    border-color: #fff;
}
.job-popular-searches{
    margin-top:35px;
    color: #c8c7cc;
}
.job-dropdown-arrow i{
    transition:0.3s ease;
    
}
.job-dropdown.open .job-dropdown-arrow i{
    transform: rotate(180deg);
}
.job-popular-searches a{
    margin: 7px;
    color: #fff !important;
    text-decoration: underline !important;
    font-size:13px;
}

.job-dropdown{
    position:relative;
}

.job-dropdown-menu{

    display:none;

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#fff;

    border:1px solid #ddd;

    max-height:300px;

    overflow:auto;

    z-index:999;

}

.job-dropdown.open .job-dropdown-menu{

    display:block;
    margin-top: 10px;
    border-radius: 10px;

}

.job-dropdown-item{

    display:block;

    padding:12px 15px;

}

.job-results-layout{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.job-sidebar{
    width:280px;
    flex-shrink:0;
    background: #fff;
    padding: 30px;
}

.job-sidebar h3{
    margin: 25px 0 15px;
    font-size: 17px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.job-sidebar label{
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    margin-bottom: 25px;
}

.job-results-wrapper{
    flex:1;
}

.job-card{
    border:1px solid #ddd;
    padding:25px;
    margin-bottom:20px;
    border-radius:6px;
    background:#fff;
}

.job-dropdown-btn{
    cursor:pointer;
    user-select:none;
}

.job-results-layout input[type=checkbox], .job-dropdown-menu input[type=checkbox]
{
    height: 17px;
    width: 17px;
    border: 1px solid #C8C7CC;
    border-radius: .4rem;
    margin-right: 7px;
}

.job-card h3 a
{
    color:#000;
}
.job-card a
{
color:#10069f;
}

.job-card:hover
{
    border:1px solid #10069f;
}
.job-search-box{
    position:relative;
}

.clear-keyword{
    position:absolute;
    right:180px;
    top:50%;
    transform:translateY(-50%);
    font-size:22px;
    cursor:pointer;
    display:none;
    color:#fff;
    line-height:1;
}

.clear-keyword:hover{
    color:#ddd;
}
/*mobile response*/
@media (max-width: 767px) {
.job-results-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-direction: column;
}
.job-sidebar {
    width: 100%;
    flex-shrink: 0;
    background: #fff;
    padding: 30px;
}
.job-search-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-direction: column;
}
}