/** Author: DawnM, Sandbur Farm Productions
     Date: May 2017
     ==========================================
     Sandbur Farm custom lightbox2 css
**/

* {
  box-sizing: border-box;
}

#slideshow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.pic {
    padding: 0;
    margin: 10px;
    width: 20%;
}

.overlay {
    z-index: 900!important;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
}

.big {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


#lb, #rb {
    width: 26px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

#lb {
    float: left;
}

#rb {
    float: right;
}

#controls {
    z-index: 1000!important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#cap {
    color: rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0.9);
    font-size: 22px;
    font-family: sans-serif;
    position: absolute;
    text-align: center;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}



/************************* media queries *******************************/
/*@media and (min-width:993px) {
  .slideshow {
    flex-wrap: wrap;
}
}*/

/* end my media query code */
