.card-closed{
    opacity:0.3 !important;
}
.card-win{
    background:lightgreen !important;
}
.card-lost{
    background:pink !important;
}

.sticky-60{
    top:70px !important;
}
.jobs-list-body ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  height: 100%;
}
.jobs-list-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    height: auto;
    
    gap: 10px;

}

.jobs-list{
    width: 270px;
    margin: 0 5px 30px 0px;
    
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    border-radius: 0px;
}

.jobs-list-heading{
    font-size: 12px;
    font-weight: bold;
    vertical-align:middle;
    height:40px;
    width:250px;
    
}
.jobs-list-amount{
    margin-bottom:20px;
    width:250px;
    text-align:right;
}
.jobs-list-body{
    
    margin-right: 5px;
    margin-left: 9px;
    position:relative;
    height:100%;
    
}

.jobs-list-body::-webkit-scrollbar {
    width: 0.4em;
}

.jobs-list-body::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0, 0.2);
    border-radius: 5px;
}

.jobs-list-body::-webkit-scrollbar-track {
    background-color: #e2e4e6;
}

.jobs-list-footer{
    height: 50px;
}

.job-block{
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    display: block;
    margin-bottom: 6px;
    width: 94%;
    max-width: 300px;
    min-height: 20px;
    position: relative;
    text-decoration: none;
    z-index: 0;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-top: 10px;
}



.job-info-block{
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.job-name-block{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-bottom: 15px;
}


:root {
  --star-size: 30px;
  --star-color: #fff;
  --star-background: #fc0;
}
.stars::before {
    content:"★★★★★";
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--star-size);
  font-family: Times; 
  line-height: 1;
}  
.jobs-list .card{
    width:233px;
}

