.sponsorLogo{
    height: auto;
    max-width: 200px;
    position: relative;
    display: inline-block;
    margin: 20px;
    vertical-align: middle;
}

.pictureThumbnail{
    width: 150px;
    height: 150px;
    position: relative;
    display: inline-block;
    background-position: center;
    background-size: cover;
    margin: 10px;
    transition: 1s ease;
}

.pictureThumbnail:hover{
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.noScroll{
    overflow: hidden;
}

#slideshowParent{
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1200;
}

.pictureFull{
    display: none;
    max-height: 80vh;
    max-width: 80%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
}