html {
    //background: url(../img/background-weddings.jpg) no-repeat center center fixed;
    //background-size: cover;
    //background-position-y: 100px;
}

.main-row {
    background: url(../img/background-media.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.band-thumb-row {
    position: relative;
    margin-bottom: 10px;
}

.thumb-wrapper {
    margin: auto;
}

.band-thumb {
    //background: url(../img/about/band-8.jpg);
    background-size: contain;
    width: calc(8vw - 10px);
    height: calc(8vw - 10px);
    max-height: 100px;
    max-width: 100px;
    margin-right: 10px;
}

.shadow {
    cursor: pointer;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.shadow:hover {
    background-color: rgba(0,0,0,0);
}

.band-selected {
    box-shadow: 0px 0px 2px 1px rgba(255,255,255,1);
}

.band-info {
    background: rgba(0,0,0,0.4);
    width: 430px;
    height: 150px;
    margin-top: 10px;
    margin-right: 10px;
    text-align: center;
    vertical-align: middle;
}

.band-info-text {
    font-size: 16px;
    display: none;
}

@media only screen and (max-width: 767px) {
    .band-thumb {
        height: 75px;
        width: 75px;
        max-width: 20vw;
        max-height: 20vw;
        margin-right: 5px;
    }
    
    .band-thumb-row {
        margin-bottom: 5px;
    }
    
    .band-info {
        width: 330px;
        max-width: calc(80vw + 15px);
        margin-right: 5px;
    }
    
    #extra-text {
        display: none;
    }
}