.text-green-primary{
	color:#97c054;
}

.hr-gradient{

	border:0px solid;
	background: linear-gradient(to right,#77a954, #fff );
}

.btn.btn-search {
   /* padding: 0.375rem 0;
     font-size: 0;
    border-radius: 5px;
    background-image: url(../img/magnifying-glass-solid.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px auto;
    background-color: #77a954; */
    width: 100%;
    height: 100%;
    min-height: 38px;
}

.job-item {
    display: block;
    cursor: pointer;
    border: 1px solid #dee2e6;
    transition: all ease 1s;
}

.job-item:hover {
    background-color: #fff;
    border: 1px solid #97c054;
    box-shadow: 0 0 0.5rem #00000022;
    transition: all ease 0.2s;
}
.job-item img {
    max-height: 40px;
}

.job-date {
    font-size: 13px;
    line-height: 13px;
    margin-top: -6px;
    display: block;
    margin-bottom: 0.7rem;
}

.job-company {
    display: block;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 5px;
}

.job-name {
    display: block;
    font-size: 18px;
    line-height: 19px;
    font-weight: 500;
}

.job-region,
.job-type {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 14px;
}
.job-region i,
.job-type i {
    font-size: 18px;
    width: 14px;
    height: 20px;
    padding-top: 2px;
    margin-right: 0.75rem;
}

.btn-job {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    width: 100% !important;
    max-width: 40px !important;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #97c054;
    color: #97c054;
    text-align: center;
    transition: all 0.2s ease-in-out;
    font-size: 20px;
}

.btn.btn-jobs {
    background-color: white;
    color: #97c054;
    width: calc(100% - 1rem);
    position: relative;
    padding: 0.55rem 2rem 0.55rem 1rem;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    transition: all ease 0.2s;
}

.btn.btn-jobs::after {
    content: "\f054";
    height: 100%;
    font-family: "Font Awesome 5 Pro";
    color: #97c054;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    aspect-ratio: 1/1;
    background-color: white;
    top: 0;
    right: 0;
    border-radius: 50%;
    position: absolute;
    font-weight: 300;
    box-shadow: 0 0 0 5px white, 0 0 0 6px #97c054, 0 0 0 10px white;
    transition: all ease 0.2s;
}
.btn.btn-jobs:hover {
    padding-right: 3rem;
    color: #77a954;
}

.btn.btn-jobs:hover::after {
    box-shadow: 0 0 0 1px white, 0 0 0 2px #97c054, 0 0 0 12px white, 0 0 1rem 12px #00000033;
}

.bg-gradient-green {
    background: linear-gradient(
        90deg,
        rgba(69, 143, 68, 1) 0%,
        rgba(98, 171, 80, 1) 33%,
        rgba(129, 181, 80, 1) 66%,
        rgba(150, 189, 87, 1) 100%
    );
}

#jobModal.modal .close {
    padding: 10px 20px;
    font-size: 20px;
    position: absolute;
    top: 0;
    right: 0;
    color: #77a954;
    z-index: 2;
	cursor: pointer;
}

#jobModal .modal-body {
    padding: 0 15px 0 15px;
}

#jobModal .modal-content {
    overflow: hidden;
}

#jobModal.modal .modal-dialog {
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto !important;
}

#jobModal .modal-footer{
    border:unset;
}

.btn-green-submit, .btn-green-submit:hover{
    background-color: transparent;
    border:unset;
    color: #97c054;

    position: relative;
    padding: 0.55rem 4rem 0.55rem 1rem;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    transition: all ease 0.2s;
}
.btn-green-submit:hover{
    color: #77a954;
    padding-right: 5rem;
}

.btn-green-submit::after{
    content: "\f054";
    height: 100%;
    font-family: "Font Awesome 5 Pro";
    color: #97c054;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    aspect-ratio: 1/1;
    background-color: white;
    top: 0;
    right: 0;
    border-radius: 50%;
    position: absolute;
    font-weight: 300;
    box-shadow: 0 0 0 5px white, 0 0 0 6px #97c054, 0 0 0 10px white;
    transition: all ease 0.2s;
}
.btn-green-submit:hover::after{
    box-shadow: 0 0 0 1px white, 0 0 0 2px #97c054, 0 0 0 12px white, 0 0 1rem 12px #00000033;
}


button.btn-green-submit.loading {
    pointer-events: none;
}

button.btn-green-submit.loading::after{
    content:"\f3f4";
    animation:rotate infinite 1s linear;
}

@keyframes rotate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

#job-form label{
    display: none;
}

#job-form select:invalid , #job-form *::placeholder, #job-form .input-file.placeholder{
    color:#bbb;
}

#job-form select option{
    color:#000;
}

#job-form input[type="file"]{
    display: none;

}
#job-form .input-file{

    cursor:pointer;
    background-image:url(../img/arrow-up-from-bracket-solid.svg) ;
    background-position: calc(100% - 10px) center;
    background-repeat: no-repeat;
    background-size: 15px auto;
}

#job-form .form-control:disabled,v .form-control[readonly]{
    background-color: unset;
}

#job-form .disabled{
    pointer-events: none;
}