* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #0c030e;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(#414141, #000000);
  border-radius: 10px;
}
#main{
  margin-top: -5svh;
}
.main-header{
  background-color: #000;
}
footer{
  padding-top: 3svh;
}
#job-filter-nav {
  padding: 7px;
  background: linear-gradient(107deg, #210746 22.42%, rgb(87 0 97) 44.11%);
}
#job-filter-nav-div-1 {
  padding: 0;
}
#job-filter-type-cont {
  padding: 7px 10px;
  background: linear-gradient(107deg, #1a013c 22.42%, rgb(60 1 67) 44.11%);
}
.tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.tags span {
  background-color: lightgrey;
  padding: 2px 5px;
  text-align: center;
  border-radius: 5px;
}
.slider-container {
  text-align: center;
  width: 209px;
}
.slider-container label {
  display: flex;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
    line-height: 1.2;
}

#salary-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #007bff 0%, #007bff 0%, #ddd 0%, #ddd 100%);
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

#salary-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white; 
}

#salary-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: #007bff;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
}

.slider-values {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.slider-values span {
  font-size: 14px;
  color: #666;
}
.clear-filter{
    display: flex;
    justify-content: end;
    align-items: end;
}

#job-card-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.job-card{
    width: 100%;
    padding: 10px 13px;
    /* background: #fff; */
    border-radius: 12px;
    /* -webkit-box-shadow: 0 2px 4px 0 #0001 4; */
    /* box-shadow: 0 2px 4px 0 #0001 4; */
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
   
    border: 2px solid rgba(255, 255, 255, 0.5);
  
    background: linear-gradient(
      38deg,
      #210746  20.42% ,
      rgb(219 0 243 / 40%) 58.11%
    );
    /* background: linear-gradient(
      38deg,
      #210746 58.11%,
      rgb(219 0 243 / 40%) 6.42%
    ); */
  
    box-shadow: 0px 1.197px 29.915px 0px rgba(69, 42, 124, 0.1);
    backdrop-filter: blur(35px);
    
}
.job-card:first-child{
   margin-top: 0!important;
    
}
.job-card:hover{
  transform: scale(1.03);
}
.job-card .card-left{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.job-card .card-right{
    width: 29%;
    display: flex;
    justify-content: end;
    align-items: baseline;
}
.job-card .card-right img{
    width: 70px;
    aspect-ratio: 3/2;
    object-fit: contain;
    /* mix-blend-mode: color-burn; */
}
.job-card h5, .job-card h6, .job-card span, .job-card span i , .job-card .time , .job-card .time i{
  color: #fff!important;
}