/* Add here all your css styles (customizations) */

.jobdesc {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 88px;
}

.jobtitle  {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 28px;
}

.front-jobtitle {
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 22px;
}


/* Resumes style */
  .image-container {
    width: 100%; /* Make container width flexible */
    max-width: 380px; /* Maximum width is 300px */
    height: 300px; /* Fixed height */
    overflow: hidden;
    position: relative;
  }
  
  .image-container img {
    position: absolute;
    top: 0%;
    left: 50%;
    width: 100%;    /*300px;*/
    height: auto;
    transform: translate(-50%, -0%);
  }
  
/* Resumes sidebar style */
.image-container-side {
    width: 100%; /* Make container width flexible */
    max-width: 240px; /* Maximum width is 300px */
    height: 180px; /* Fixed height */
    overflow: hidden;
    position: relative;
  }
  
  .image-container-side img {
    position: absolute;
    top: 0%;
    left: 50%;
    width: 240px;    /*300px;*/
    height: auto;
    transform: translate(-50%, -0%);
  }  