/* Slideshow container */
.slideshow-container {
    position: relative;
    background: #F2F2F2;
    /*
    width: 90%;
    max-width: 400px;
    */
    max-width: 300px;
    margin: 0 auto;
}

.employees_card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    
    margin: auto;
    text-align: center;
    
    font-family: arial;
}

.worker_name_caption{
    font-weight: 600;
}

.job_title {
    color: grey;
    font-size: 18px;
}

.employees_card p {
    padding-left: 20px;
    padding-right: 20px;
    
    text-align: left;
}

/* Slides */
.workerSlides {
    display: none;
    text-align: center;
    
    width: 100%;
    
    max-width: 400px;
    height: auto;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    
    top: 50%;
    width: auto;
    
    margin-top: -30px;
    padding: 16px;
    
    color: #888;
    font-weight: bold;
    
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    
    user-select: none;
    
    background-color: rgba(0,0,0,0.8);
    color: white;
    /*
    margin-left: 50px;
    margin-right: 50px;
    */
}

/* Position the "next button" to the right */
.next {
    position: absolute;
    right: 0;
    
    border-radius: 3px 0 0 3px;
}

/* On hover*/
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
    color: green;
}

/* The dot indicator container*/
.dot-container {
   /* padding: 10px; */
    
    width: 260px;
    margin: 0 auto;
    
    text-align: center;    
    background: #F2F2F2;
    
    margin-top: 20px;
}

/* The dots indicators */
.dotForSlide {
    cursor: pointer;
    height: 15px;
    
    width: 15px;
    margin: 0 2px;
    
    background-color: #bbb;  
    border-radius: 50%;
    
    display: inline-block;
    transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
    background-color: #717171;
}