@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Sarpanch:500');

body {
    background-color: black;
    font-family: Teko, Arial, Helvetica, sans-serif;
    color: white;
    font-size: 11;
    height: 100vh;
    margin: 30px;
    padding: 0;
}
a:link {
    color: white;
    text-decoration: none;
}

a:visited {
    color: white;
    text-decoration: none;
}
.title {
    margin: 0 auto;
    /* max-width: 854px; */
    width: 100%;
}
.titletext {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 36px;
}

.caption {
    /* max-width: 854px; */
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
}

.container {
    background: #404040;
    margin: 0 auto;
    /* max-width: 854px; */
    min-width: 440px;
    width: 100%;
}

.bandinfo {
    background-color: #282828;
    color: #A8A8A8;
    font-family: Arial, Helvetica, sans-serif;
}

.band {
    font-family: 'Sarpanch', sans-serif;
    font-size: 12pt;
}


/*  VIDEO PLAYER CONTAINER
############################### */
.vid-container {
    height: 0;
    padding-bottom: 52%;
    padding-top: 30px;
    position: relative;
}

.vid-container iframe,
.vid-container object,
.vid-container embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}


/*  VIDEOS PLAYLIST
############################### */
.vid-list-container {
    margin-left:4%;
    margin-top: 20px;
    overflow: hidden;
    padding-bottom: 20px;
    width: 92%;
}

.vid-list {
    left: 0;
    position: relative;
    top:0;
    width: 1344px;
}

.vid-item {
    display: block;
    float: left;
    height: 175px;
    margin: 0;
    padding: 10px;
    width: 175px;
}

.thumb {
    /*position: relative;*/
    height: 84px;
    overflow:hidden;
}

.thumb img {
    position: relative;
    top: -13px;
    width: 100%;
}

.vid-item .desc {
    color: #21A1D2;
    font-size: 15px;
    margin-top:5px;
}

.vid-item:hover {
    background: #eee;
    cursor: pointer;
}

.arrows {
    position:relative;
    width: 100%;
}

.arrow-left {
    background: #777;
    color: #fff;
    cursor: pointer;
    left: -25px;
    padding: 15px;
    position: absolute;
    top: -130px;
    z-index: 99;
}

.arrow-right {
    color: #fff;
    position: absolute;
    background: #777;
    padding: 15px;
    right: -25px;
    top: -130px;
    z-index:100;
    cursor: pointer;
}

.arrow-left:hover {
    background: #CC181E;
}

.arrow-right:hover {
    background: #CC181E;
}


@media (max-width: 624px) {
    body {
        margin: 15px;
    }
    .caption {
        margin-top: 40px;
    }
    .vid-list-container {
        padding-bottom: 20px;
    }

    /* reposition left/right arrows */
    .arrows {
        position:relative;
        margin: 0 auto;
        width:96px;
    }
    .arrow-left {
        left: 0;
        top: -17px;
    }

    .arrow-right {
        right: 0;
        top: -17px;
    }
}
