body {
    background: url('/store/images/careers/oval.svg');
    background-repeat: no-repeat;
    background-position-x: -35vw;
    background-position-y: -60vh;
}

.container.main {
    margin-top: 36px;
    font-family: SF Pro Display,SF Pro Icons,AOS Icons,Helvetica Neue,Helvetica,Arial,sans-serif;
}
.h3, h3 {
    font-size: 1.4em;
  }
.top-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-content > div:first-child {
    flex: 45%;
    width: 45%;
    padding: 0 30px 0 50px;
}

.top-content > div:last-child {
    flex: 55%;
    width: 55%;
}

.top-content .right img {
    width: 100%;
}

.top-content h1{
    font-size: 35px;
    font-weight: 600;
    padding-bottom: 10px;
}

.top-content p{
    color: #818181;
    font-size: 19px;
    font-weight: 400;
}

button.button-default, a.button-default {
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    border-radius: 100px;
    outline: none;
    box-shadow: none;
    color: #fff;
    padding: 10px 30px;
    transition: all 0.1s ease-in-out;
    text-decoration: none !important;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

button.button-default.outlined, a.button-default.outlined {
    background: #fff;
    border: 1px solid var(--theme-color);
    border-radius: 100px;
    outline: none;
    box-shadow: none;
    color: var(--theme-color);
    padding: 10px 30px;
    transition: all 0.1s ease-in-out;
    text-decoration: none !important;
    cursor: pointer;
}

button.button-default:active, a.button-default:active {
    transform: scale(1.02);
}

button.button-default:hover, a.button-default:hover {
    filter: brightness(1.1);
}

.top-content button.button-default {
    padding: 12px 35px;
}

.mid-content {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.mid-content h2{
    font-size: 22px;
    font-weight: 400;
}

.mid-content p{
    color: #818181;
    font-size: 19px;
    font-weight: 400;
    /* max-width: 400px; */
    margin-bottom: 50px;
}

.icon-content {
    display: flex;
    width: 100%;
    /* padding-inline: 50px; */
    justify-content: space-around;
    margin-bottom: 50px;
}

.feature-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.feature-block .feature-icon {
    border-radius: 50px;
    width: 80px;
    height: 80px;
    background: #fff;
    box-shadow: 0px 2px 48px #1371E333;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-block:nth-child(2) .feature-icon {
    border-radius: 50px;
    width: 80px;
    height: 80px;
    background: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-block .feature-text h4{
    font-size: 20px;
    font-weight: 400;
}

.feature-block .feature-text p{
    color: #818181;
    font-size: 15px;
    font-weight: 400;
    max-width: 400px;
    margin-bottom: 50px;
    max-width: 300px;
}

.feature-block:nth-child(2) .feature-icon:before {
    content: "";
    width: 250px;
    right: calc(100% + 15px);
    height: 100%;
    background: url('/store/images/careers/connector-1.svg');
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 20px;
}
.feature-block:nth-child(2) .feature-icon:after {
    content: "";
    width: 250px;
    left: calc(100% + 20px);
    height: 100%;
    background: url('/store/images/careers/connector-2.svg');
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    bottom: 20px;
}

.job-listing-section .job-listing-header{
    display: flex;
    justify-content: space-between;
}

.job-listing-header .title-text h2{
    font-size: 22px;
    font-weight: 400;
}

.job-listing-header .title-text p{
    color: #818181;
    font-size: 16px;
    font-weight: 400;
    max-width: 300px;
    margin: 0;
}

.job-listing-filters {
    display: flex;
    align-items: end;
    gap: 20px;
}

.form-item-select select{
    border: none;
    background: #F3F3F3;
    color: #818181;
    padding: 10px 30px;
    min-width: 150px;
    border-radius: 50px;
    font-size: 14px;

    /** for the dropdown indicator */
    appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='grey' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 1em !important;
}

.form-item-select select:focus, .form-item-select select:focus-visible{
    border: none;
    box-shadow: none;
    outline: none;
}

.form-item-search {
    position: relative;
}

.form-item-search input{
    border: none;
    background: #F3F3F3;
    color: #818181;
    padding: 10px 30px;
    padding-left: 40px;
    padding-right: 80px;
    min-width: 275px;
    border-radius: 50px;
    font-size: 14px;

    appearance: none !important;
    background-image: url("/store/images/careers/search.svg") !important;
    background-repeat: no-repeat !important;
    background-position: left 20px center !important;
    background-size: 1em !important;
}

.form-item-search input:focus, .form-item-search input:focus-visible{
    border: none;
    box-shadow: none;
    outline: none;
}

.form-item-search button{
    position: absolute;
    right: 5px;

    background: var(--theme-color);
    border-radius: 100px;
    border: none;
    outline: none;
    box-shadow: none;
    color: #fff;
    padding: 5px 15px;
    transition: all 0.1s ease-in-out;
    height: calc(100% - 8px);
    top: 50%;
    transform: translateY(-50%);
    margin: auto 0;
    font-size: 12px;
}


.form-item-search button:hover {
    filter: brightness(1.1);
}

.job-listing-header {
    margin-bottom: 30px;
}

.job-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-item {
    border: #1371E3 1px solid;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 16px;
}

.job-details {
    display: flex;
    justify-content: space-between;
    flex: 80%;
    width: 80%;
    position: relative;
}

/* .job-details > div {
    flex: auto;
    width: auto;
} */

.job-details > div:first-child {
    flex: 40%;
    width: 40%;
    padding-left: 20px;
}

.job-details > div:nth-child(2), .job-details > div:nth-child(3) {
    flex: 30%;
    width: 30%;
    position: relative;
    /* padding-left: 10px; */
    text-align: center;
}


.job-item .view-button {
    display: flex;
    justify-content: end;
    align-items: center;
}

.job-item .view-button button, .job-item .view-button a {
    font-size: 14px;
}

/* .job-item .job-type {
    position: relative;
    padding-left: 0;
    text-align: center;
    flex: 10px;
} */

.job-item .job-type:before {
    position: absolute;
    content: "";
    height: 100%;
    left: 0;
    width: 1px;
    background: #B5B5B5;
}

.job-item .job-type:after {
    position: absolute;
    right: 10px;
    content: "";
    height: 100%;
    width: 1px;
    background: #B5B5B5;
}


/* Jobs Page */

.container.job {
    margin-top: 160px;
    font-family: SF Pro Display,SF Pro Icons,AOS Icons,Helvetica Neue,Helvetica,Arial,sans-serif;
}

.job-title-container {
    margin-bottom: 30px;
}

.job-title-container h1{
    font-size: 34px;
    font-weight: 600;
}

.selctor-tabs {
    border-bottom: 1px solid #707070;
    display: flex;
    margin-bottom: 30px;
}

.selctor-tabs .tab{
    padding: 2px 10px;
    color: #818181;
    font-size: 15px;
    margin-bottom: -2px;
    cursor: pointer;
}

.selctor-tabs .tab.active{
    color: var(--theme-color);
    border: 1px solid #707070;
    border-bottom-color: #ffffff;
    background: #ffffff;
    z-index: 10;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

#application .section-title h3{
    font-size: 22px;
}

#application .section-title p{
    font-size: 14px;
    color: #818181;
}


#application .input-group {
    position: relative;
}

#application .input-group .input-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 30px;
    font-size: 10px;
    z-index: 2;
    pointer-events: none;
    color: #9f9f9f;

}

#application input {
    /* border-radius: 50px !important; */
    padding: 25px 10px 25px 60px !important;
    /* transition: all 0.3s ease-in-out; */
    border-left: none;
    background: #f6f6f6;
    color: #6c6c6c;
    border: none;
    border-radius: 50px 50px;
    z-index: 1;
    margin-block: 5px;
    font-size: 14px;
}

#application .input-group.no-icon input {
    padding: 25px 20px 25px 20px !important;
}


#application select {
    /* border-radius: 50px !important; */
    padding: 15px 20px 15px 20px !important;
    /* transition: all 0.3s ease-in-out; */
    border-left: none;
    background: #f6f6f6;
    color: #6c6c6c;
    border: none;
    border-radius: 50px 50px;
    z-index: 1;
    margin-block: 5px;
    font-size: 14px;
    width: 100%;
    height: 50px;
}

#application select {
    appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='grey' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 20px center !important;
    background-size: 1em !important;
}

input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.question-block {
    margin-bottom: 20px;
}

.question-block .question-title{
    margin-bottom: 10px;
    font-size: 15px;
}

.custom-file .custom-file-label {
    padding: 25px 20px 25px 20px !important;
    /* transition: all 0.3s ease-in-out; */
    border-left: none;
    background: #f6f6f6;
    color: #6c6c6c;
    border: none;
    border-radius: 50px 50px;
    z-index: 1;
    margin-block: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.custom-file-label::after {
    position: absolute;
    right: 5px;

    background: var(--theme-color);
    border-radius: 100px;
    border: none;
    outline: none;
    box-shadow: none;
    color: #fff;
    padding: 5px 15px;
    transition: all 0.1s ease-in-out;
    height: calc(100% - 12px);
    margin: auto 0;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Upload";
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}


.action-buttons button.button-default, .action-buttons a.button-default {
    width: 150px;
    text-align: center;
}

#jobDetails ul {
    margin: revert;
    padding: revert;
}


.error-message {
    background: rgb(216, 36, 36);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.error-message span {
    font-weight: 500;
}


.success-message {
    background: rgb(33, 125, 56);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.success-message span {
    font-weight: 500;
}
.no-records-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px;
    gap: 20px;
    color: #7a7a7a;  
    width: 100%;
  }
  
  .no-records-section svg{
    width: 50px; color: inherit; fill: currentColor; 
  }


  .modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70% !important;
    max-width: 750px;
    background-color: white;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 3rem 5rem rgb(0 0 0 / 30%);
    z-index: 10;
    height: auto;
    display: block;
  }
  
  #language-modal {
    width: 40% !important;
  }

/* Mid Sized Screens */

@media (max-width: 1200px) {
    .feature-block:nth-child(2) .feature-icon:before {
        content: "";
        width: 200px;
        right: calc(100% + 15px);
        height: 100%;
        background: url('/store/images/careers/connector-1.svg');
        background-repeat: no-repeat;
        background-position: center center;
        position: absolute;
        top: 20px;
    }
    .feature-block:nth-child(2) .feature-icon:after {
        content: "";
        width: 200px;
        left: calc(100% + 20px);
        height: 100%;
        background: url('/store/images/careers/connector-2.svg');
        background-repeat: no-repeat;
        background-position: center center;
        position: absolute;
        bottom: 20px;
    }
}




/* Mobile */


@media (max-width: 991px) {

    .container.main {
        margin-top: 120px;
    }

    .top-content {
        flex-direction: column;
        /* flex-direction: column-reverse; */
    }

    .top-content > div:first-child {
        flex: 100%;
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .top-content > div:last-child {
        flex: 100%;
        width: 100%;
        padding: 0;
    }
    
    .job-listing-section .job-listing-header {
        flex-direction: column;
        gap: 20px;
    }

    .job-listing-filters {
        flex-direction: column;
    }

    .job-listing-filters > div{
        flex: 100%;
        width: 100%;
    }

    .job-listing-filters > div > select{
        width: 100%;
    }

    .job-listing-filters > div > input{
        width: 100%;
    }

    .feature-block:nth-child(2) .feature-icon:before {
        display: none;
    }
    .feature-block:nth-child(2) .feature-icon:after {
        display: none;
    }
    
    .icon-content {
        flex-direction: column;
    }

    /* .job-item {
        flex-direction: row;
        gap: 0;
        border-radius: 12px;
        flex-wrap: wrap;
    }

    .job-item > div {
        padding: 0;
        flex: 50%;
        width: 50%;
        padding: 10px;
    }
    
    
    .job-item > div:first-child {
        font-weight: 500;
    }
    
    .job-item .job-type {
        position: relative;
        flex: 50%;
        width: 50%;
    }
    
    .job-item > :nth-child(2), .job-item > :nth-child(4) {
       text-align: right;
    } */

    .job-item {
        border-radius: 12px;
    }

    .job-details {
        display: flex;
        flex-direction: column;
        flex: 60%;
        width: 60%;
    }
    
    /* .job-details > div {
        flex: auto;
        width: auto;
    } */
    
    .job-details > div {
        flex: 100% !important;
        width: 100% !important;
        padding-left: 20px !important;
        text-align: left !important;
    }
    
    /* .job-details > div:nth-child(2), .job-details > div:nth-child(3) {
        flex: 100%;
        width: 100%;
        position: relative;
        padding-left: 10px;
        text-align: left;
    } */

    .job-item .job-type:before {
        display: none;
    }
    
    .job-item .job-type:after {
        display: none;
    }
}

i,
i::after,
i::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: revert;
}

.input-group {
    position: relative;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.form-control.error ~ label.error {
    position: absolute;
    left: 102%;
    white-space: nowrap;
    margin: 0;
    color: red;
    font-size: 12px;
}

input[type=checkbox] ~ label.error, input[type=radio] ~ label.error {
    position: absolute;
    left: 102%;
    top: 50%;
    white-space: nowrap;
    font-size: 12px;
    color: red;
}

input[name=phone_number] ~ label.error {
    position: absolute;
    top: 50%;
    white-space: nowrap;
    font-size: 12px;
    color: red;
    left: calc(102% + 3px) !important;
}

input[name=candidateCV] ~ label.error {
    position: absolute;
    top: 50%;
    white-space: nowrap;
    font-size: 12px;
    color: red;
    left: 102% !important;
}

.job-action > .view-button > .button-default:hover {
    color: var(--theme-color) !important;
    background: #fff !important;
    transition: 0.3s ease-in-out;
}