body.rtl, body[dir="rtl"] {
  & .fa-paper-plane-top {
      transform: scaleX(-1);
  }
}

.listSearchBoxWrapper {
 
  background: var(--colorWhite);
  display: flex;
  justify-content: center;
}

.job-cards__list {
  
  font-size: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
 
  gap: 20px; 
  
  > .job-card {
  
    background: no-repeat padding-box #fff;
    border-radius: 16px;
    box-shadow: 0 2px 6px #dc41a4 0,0,0,.32;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 3px 20px #3c3c3c4d;
    box-sizing: border-box;
    padding-bottom: 72px;

    .job-card__header {
  
      position: relative;
      display: flex;
      gap: 10px;
      padding: 16px;
      padding-inline-end: 46px;
      
      .cn-toggleDropdownButton {
        
        position: absolute;
        inset-inline-end: 6px;
        top: 50%;
        translate: 0 -50%;
        background: none;
        border: 0;
        
        &:hover {
        
          background: var(--backgroundButton, rgb(245 245 245 / 1))
        }
      }
    }
    
    .brand-company__image {
      
      width: 42px;
      height: fit-content;
      aspect-ratio: 1;
      border-radius: 50%;
      overflow: hidden;
      
      > img {
        
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
      }
    }
    
    .brand-company__info {
      
      display: flex;
      flex-flow: column nowrap;
      overflow: hidden;
                  
      .brand-company__info-title {
      
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        font-size: 16px;
        font-weight: bold;
         display: block;
      }
      
      .brand-company__info-address {
        
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        display: block;
      }
      
      a {
      
        text-decoration: none;
        color: inherit;
        
        &:after {
          
          content: '';
          position: absolute;
          inset: 0;
        }
      }
    }
    
    .job-card__content {
      
      position: relative;
      display: flex;
      flex-flow: column nowrap;
      
      .job-card__content-info {
      
        padding: 16px;
      }
      
      .job-card__content-title {
      
        font-size: 16px;
        font-weight: bold;
        margin: 0;
        margin-bottom: 10px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
      }
      
      a {
      
        text-decoration: none;
        color: inherit;
        
        &:after {
          
          content: '';
          position: absolute;
          inset: 0;
        }
      }
      
      .job-card__content-typeList {
        
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-flow: row wrap;
        gap: 4px;
        min-height: 90px;
        
        li {
          
          position: relative;
          padding: 5px 20px;
          background: #eee;
          border: 1px solid rgba(0, 0, 0, 0.1);
          border-radius: 100px;
          min-height: 36px;
          height: fit-content;
          align-items: center;
          display: flex;
        }
      }
    }
    
    .job-card__content-image {
      
      background: #eee;
      aspect-ratio: 318/219;
      
      img {
  
        width: 100%;
        height: 100%;
        aspect-ratio: 318/219;
        object-fit: cover;
      }
    }
    
    .job-card__footer {
      
      position: absolute;
      bottom: 0;
      inset-inline: 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      padding: 16px;
    
      > div {

        &:first-child { 
          
          text-align: start;
        }
        
        &:last-child { 
          
          text-align: end;
        }

      }
      
      .bottomItemsSave {
        
        background: none;
        color: #444;
        border: 0;
        height: fit-content;
        width: 36px;
        aspect-ratio: 1;
        border-radius: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        
        &:hover {
          
          background: var(--backgroundButton, rgb(245 245 245 / 1));
        }
      }
      
      .bottomItemsSend {
        
        cursor: pointer;
        position: relative;
        padding: 5px 20px;
        background: #eee;
        border-radius: 100px;
        min-height: 40px;
        height: fit-content;
        align-items: center;
        display: flex;
        gap: 4px;
        background-color: #0069BE;
        background-image: -webkit-linear-gradient(top, #0069BE, #0069BE);
        color: #fff;
        
        &:hover {
        
          color: white;
          filter: brightness(85%);
        }
      }
    }
  }
}

.escapeNotesGender {
  
  display: block;
  margin-top: 20px;
  text-align: center;
}


@media (max-width: 768px) {
  
  .job-cards__list{
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 480px) {
  
  .job-cards__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

